OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_47/] [or1ksim/] [testbench/] [Makefile.am] - Diff between revs 410 and 424

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 410 Rev 424
## Makefile for or1ksim testsuite
## Makefile for or1ksim testsuite
## (c) Marko Mlinar, 2001
## (c) Marko Mlinar, 2001
## To add new test, edit between marked areas only
## To add new test, edit between marked areas only
#
#
# This file is part of OpenRISC 1000 Architectural Simulator.
# This file is part of OpenRISC 1000 Architectural Simulator.
#
#
# This program is free software; you can redistribute it and/or modify
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#
################### Tests #####################
################### Tests #####################
# tests in this directory
# tests in this directory
OR1K_TESTS = basic cache excpt cfg dmatest eth mmu # pic
OR1K_TESTS = basic cache excpt cfg dmatest eth mmu # pic
IND_TESTS = exit cbasic local_global mul mycompress dhry functest
IND_TESTS = exit cbasic local_global mul mycompress dhry functest
ACV_TESTS = acv_uart
ACV_TESTS = acv_uart
# Subdirectory tests
# Subdirectory tests
SUB_TESTS =
SUB_TESTS =
OR1K_SUB_TESTS = uos
OR1K_SUB_TESTS = uos
###############################################
###############################################
ALL_TESTS = $(IND_TESTS) $(OR1K_TESTS) $(ACV_TESTS)
ALL_TESTS = $(IND_TESTS) $(OR1K_TESTS) $(ACV_TESTS)
TESTS = $(IND_TESTS) $(OR1K_TESTS)
TESTS = $(IND_TESTS) $(OR1K_TESTS)
bin_PROGRAMS = $(ALL_TESTS)
bin_PROGRAMS = $(ALL_TESTS)
######### Platform Independent Tests ##########
######### Platform Independent Tests ##########
exit_SOURCES = $(OR1K_SUPPORT_S) support.h exit.c
exit_SOURCES = $(OR1K_SUPPORT_S) support.h exit.c
cbasic_SOURCES = $(OR1K_SUPPORT_S) support.h cbasic.c
cbasic_SOURCES = $(OR1K_SUPPORT_S) support.h cbasic.c
local_global_SOURCES = $(OR1K_SUPPORT_S) support.h local_global.c
local_global_SOURCES = $(OR1K_SUPPORT_S) support.h local_global.c
mul_SOURCES = $(OR1K_SUPPORT_S) support.h mul.c
mul_SOURCES = $(OR1K_SUPPORT_S) support.h mul.c
dhry_SOURCES = $(OR1K_SUPPORT_S) support.h dhry.h dhry.c
dhry_SOURCES = $(OR1K_SUPPORT_S) support.h dhry.h dhry.c
mycompress_SOURCES = $(OR1K_SUPPORT_S) support.h mycompress.c
mycompress_SOURCES = $(OR1K_SUPPORT_S) support.h mycompress.c
functest_SOURCES = $(OR1K_SUPPORT_S) support.h functest.c
functest_SOURCES = $(OR1K_SUPPORT_S) support.h functest.c
###############################################
###############################################
if OR1K_EXCEPT
if OR1K_EXCEPT
####### Platform Dependent Tests - OR1K ########
####### Platform Dependent Tests - OR1K ########
basic_SOURCES = basic.s spr_defs.h
basic_SOURCES = basic.S spr_defs.h
basic_LDFLAGS =
basic_LDFLAGS =
basic_LDADD =
basic_LDADD =
cache_SOURCES = $(OR1K_SUPPORT_S) support.h cache.c
cache_SOURCES = $(OR1K_SUPPORT_S) support.h cache.c
excpt_SOURCES = excpt.S spr_defs.h
excpt_SOURCES = excpt.S spr_defs.h
excpt_LDFLAGS =
excpt_LDFLAGS =
excpt_LDADD =
excpt_LDADD =
cfg_SOURCES = cfg.S spr_defs.h
cfg_SOURCES = cfg.S spr_defs.h
cfg_LDFLAGS =
cfg_LDFLAGS =
cfg_LDADD =
cfg_LDADD =
pic_SOURCES = $(OR1K_SUPPORT_S) support.h pic.c
pic_SOURCES = $(OR1K_SUPPORT_S) support.h pic.c
dmatest_SOURCES = $(OR1K_SUPPORT_S) support.h dmatest.c
dmatest_SOURCES = $(OR1K_SUPPORT_S) support.h dmatest.c
eth_SOURCES = $(OR1K_SUPPORT_S) support.h eth.c
eth_SOURCES = $(OR1K_SUPPORT_S) support.h eth.c
acv_uart_SOURCES = $(OR1K_SUPPORT_S) support.h acv_uart.c
acv_uart_SOURCES = $(OR1K_SUPPORT_S) support.h acv_uart.c
mmu_SOURCES = $(OR1K_SUPPORT_S) support.h mmu.c mmu_asm.S -DCOPY_SECTIONS
mmu_SOURCES = $(OR1K_SUPPORT_S) support.h mmu.c mmu_asm.S -DCOPY_SECTIONS
mmu_LDFLAGS = -Txess.ld
mmu_LDFLAGS = -Txess.ld
################################################
################################################
else
else
##### Platform Dependent Tests - not OR1K #####
##### Platform Dependent Tests - not OR1K #####
basic_SOURCES =
basic_SOURCES =
cache_SOURCES =
cache_SOURCES =
excpt_SOURCES =
excpt_SOURCES =
cfg_SOURCES =
cfg_SOURCES =
pic_SOURCES =
pic_SOURCES =
dmatest_SOURCES =
dmatest_SOURCES =
eth_SOURCES =
eth_SOURCES =
acv_uart_SOURCES =
acv_uart_SOURCES =
mmu_SOURCES =
mmu_SOURCES =
###############################################
###############################################
endif
endif
## Neccessary stuff
## Neccessary stuff
if OR1K_EXCEPT
if OR1K_EXCEPT
SUBDIRS = support $(SUB_TESTS) $(OR1K_SUB_TESTS)
SUBDIRS = support $(SUB_TESTS) $(OR1K_SUB_TESTS)
else
else
SUBDIRS = support $(SUB_TESTS)
SUBDIRS = support $(SUB_TESTS)
endif
endif
if OR1K_EXCEPT
if OR1K_EXCEPT
OR1K_SUPPORT_S = except.S
OR1K_SUPPORT_S = except.S
else
else
OR1K_SUPPORT_S =
OR1K_SUPPORT_S =
endif
endif
LDADD = support/libsupport.a
LDADD = support/libsupport.a
LDFLAGS = $(OR1K_LDFLAGS)
LDFLAGS = $(OR1K_LDFLAGS)
TESTS_ENVIRONMENT = $(SHELL) ${top_srcdir}/test $(TESTS_ENV)
TESTS_ENVIRONMENT = $(SHELL) ${top_srcdir}/test $(TESTS_ENV)
again: clean all
again: clean all
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.