Search
lxdream.org :: lxdream/test/Makefile.in
lxdream 0.9.1
released Jun 29
Download Now
filename test/Makefile.in
changeset 823:8a592668322f
prev822:6e0536758465
next894:1ddd5616c5af
author nkeynes
date Sun Aug 24 02:43:28 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Fix mask correctness of MMU/general IO registers, add unknown/undoced
register at FF00002C
view annotate diff log raw
     1 srcdir = @srcdir@
     2 top_srcdir = @top_srcdir@
     3 VPATH = @srcdir@
     4 mkdir_p = @mkdir_p@
     6 # host compiler and flags
     7 HOSTCC		= @CC@
     8 HOSTCFLAGS	= @CFLAGS@
    10 SH4CC		= @SHCC@
    11 SH4INC          = -I$(srcdir)/include
    12 SH4CFLAGS	= $(SH4INC) -D_arch_dreamcast -D_arch_sub_pristine \
    13                   -O2 -fno-builtin -fno-strict-aliasing -ml -m4-single-only \
    14                   -fno-optimize-sibling-calls
    15 SH4LD		= @SHLD@
    16 SH4LDFLAGS      = -fno-builtin -fno-strict-aliasing  -ml -m4-single-only \
    17                   -Wl,-T$(srcdir)/dc.x -nostartfiles -nostdlib -L$(srcdir)/lib
    18 SH4LIBS         = -Wl,--start-group -lc -lgcc -lm -Wl,--end-group
    19 SH4OBJCOPY      = @SHOBJCOPY@ -O binary
    21 SHARED_OBJECTS = dmac.so asic.so lib.so timer.so testdata.so interrupt.so
    23 ARMCC		= @ARMCC@
    24 ARMCFLAGS	= -O2 -fno-builtin -fno-strict-aliasing -mlittle-endian
    25 ARMLD		= @ARMLD@
    26 ARMLDFLAGS      = -Wl,-T$(srcdir)/aica.x -nostartfiles -mlittle-endian \
    27                   -nostdlib -L$(srcdir)/lib-arm
    28 ARMLIBS         = -Wl,--start-group -lc -lgcc -lm -Wl,--end-group
    29 ARMOBJCOPY	= @ARMOBJCOPY@ -O binary
    31 RUNTEST		= ../src/lxdream -c $(srcdir)/lxdream.rc -puH -A null
    32 RUNTESTX	= ../src/lxdream -c $(srcdir)/lxdream.rc -xpuH -A null
    34 %.ao: %.c
    35 	$(ARMCC) $(ARMCFLAGS) -o $@ -c $< 
    37 %.ao: %.s
    38 	$(ARMCC) $(ARMCFLAGS) -o $@ -c $< 
    40 %.so: %.c
    41 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $< 
    43 %.so: %.ac
    44 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $< 
    46 %.so: %.s
    47 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $< -Wa,-I$(srcdir)
    49 %.so: %.S
    50 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $< 
    52 %.o: %.c
    53 	$(HOSTCC) $(HOSTCFLAGS) -o $@ -c $<
    55 %.arm: %.ao arm_crt0.ao
    56 	$(ARMCC) -Wl,-Ttext,0x00000000 -nostartfiles -nostdlib -e reset -o $@ arm_crt0.ao $< -lgcc
    59 %.bin: %.arm
    60 	$(ARMOBJCOPY) -O binary $< $@
    62 %.aso: %.bin bin2c
    63 	./bin2c $< $<.c
    64 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $<.c
    66 all:
    68 check: build-tests
    69 	$(RUNTEST) testsh4
    70 	$(RUNTESTX) testsh4
    71 	$(RUNTEST) testmmu
    72 	$(RUNTEST) testregs
    73 	cat $(srcdir)/testta.data $(srcdir)/testta2.data $(srcdir)/testta3.data $(srcdir)/testta4.data $(srcdir)/testta5.data | $(RUNTEST) testta
    74 	cat $(srcdir)/testsort.data | $(RUNTEST) testta
    75 #	$(RUNTEST) testide -d ../disc/test.nrg
    78 build-tests: testsh4 testmath testide testta testregs testrend testdisp testspu testmmu
    80 testsh4: lib/crt0.so sh4/testsh4.so timer.so interrupt.so \
    81 	 sh4/add.so sh4/addc.so sh4/addv.so sh4/and.so sh4/andi.so \
    82 	 sh4/bf.so sh4/bsr.so sh4/bt.so sh4/cmp.so sh4/cmpstr.so \
    83 	 sh4/div0.so sh4/div1.so sh4/float.so sh4/fmov.so sh4/ftrc.so \
    84 	 sh4/ldc.so sh4/mac.so \
    85 	 sh4/rot.so sh4/shl.so sh4/shld.so sh4/sub.so sh4/subc.so \
    86 	 sh4/trapa.so sh4/tas.so sh4/xtrct.so \
    87 	 sh4/excslot.so sh4/undef.so sh4/tlb.so sh4/vmexit.so
    88 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
    89 	$(SH4OBJCOPY) testsh4 testsh4.bin
    91 testide: lib/crt0.so $(SHARED_OBJECTS) testide.so ide.so
    92 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
    93 	$(SH4OBJCOPY) testide testide.bin
    95 testmmu: lib/crt0.so $(SHARED_OBJECTS) testmmu.so
    96 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
    97 	$(SH4OBJCOPY) testmmu testmmu.bin
    99 testmath: lib/crt0.so $(SHARED_OBJECTS) testmath.so math.so
   100 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   102 testregs: lib/crt0.so $(SHARED_OBJECTS) testregs.so ide.so
   103 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   104 	$(SH4OBJCOPY) testregs testregs.bin
   106 testta: lib/crt0.so $(SHARED_OBJECTS) testta.so pvr.so
   107 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   108 	$(SH4OBJCOPY) testta testta.bin
   110 testaica: lib/crt0.so $(SHARED_OBJECTS) testaica.so 
   111 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
   112 	$(SH4OBJCOPY) testaica testaica.bin
   114 testrend: lib/crt0.so $(SHARED_OBJECTS) testrend.so pvr.so
   115 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   116 	$(SH4OBJCOPY) testrend testrend.bin
   118 testblend: lib/crt0.so $(SHARED_OBJECTS) testblend.so pvr.so
   119 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   120 	$(SH4OBJCOPY) testblend testblend.bin
   122 testdisp: lib/crt0.so $(SHARED_OBJECTS) testdisp.so pvr.so
   123 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   124 	$(SH4OBJCOPY) testdisp testdisp.bin
   126 testyuv: lib/crt0.so $(SHARED_OBJECTS) testyuv.so pvr.so
   127 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   128 	$(SH4OBJCOPY) testyuv testyuv.bin
   130 testspu: lib/crt0.so $(SHARED_OBJECTS) testspu.so
   131 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   132 	$(SH4OBJCOPY) testspu testspu.bin
   134 testg2: lib/crt0.so $(SHARED_OBJECTS) testg2.so
   135 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   136 	$(SH4OBJCOPY) testg2 testg2.bin
   138 readdata: lib/crt0.so $(SHARED_OBJECTS) readdata.so
   139 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
   141 rend: lib/crt0.so $(SHARED_OBJECTS) rendload.so pvr.so
   142 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
   143 	$(SH4OBJCOPY) rend rend.bin
   145 testFF10: lib/crt0.so $(SHARED_OBJECTS) testFF10.so
   146 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   147 	$(SH4OBJCOPY) testFF10 testFF10.bin
   149 .PHONY : clean
   150 clean:
   151 	rm -f *.o *.so *.ao *.ac *.bin sh4/*.so mapleid ide readmem dumpasic \
   152 	   testsh4 testta testdisp testregs testide testmath testmmu \
   153 	   testrend testspu dcflash.rom
   155 distclean: clean
   156 	rm -f Makefile
   158 install:
   160 installcheck:
   162 uninstall:
   164 DISTFILES = asic.c asic.h bin2c.c dma.h dmac.c ide.c ide.h interrupt.s \
   165         lib.c lib.h math.s pvr.c pvr.h rendload.c sh4/add.s sh4/addc.s \
   166         sh4/addv.s sh4/and.s sh4/andi.s sh4/bf.s sh4/bsr.s sh4/bt.s sh4/cmp.s \
   167         sh4/cmpstr.s sh4/div0.s sh4/div1.s sh4/excslot.s sh4/float.s sh4/fmov.s \
   168         sh4/ftrc.s sh4/inc.s sh4/mac.s sh4/ldc.s sh4/rot.s sh4/shl.s sh4/shld.s sh4/sub.s \
   169         sh4/subc.s sh4/tas.s sh4/testsh4.c sh4/tlb.s sh4/vmexit.s sh4/trapa.s sh4/undef.s \
   170         sh4/xtrct.s testdata.c testdata.h testdisp.c testide.c testmath.c \
   171         testmmu.c testregs.c testrend.c testspu.c testta.c testyuv.c timer.c timer.h \
   172         testta.data testta2.data testta3.data testta4.data testta5.data testsort.data \
   173         lxdream.rc dc.x lib/crt0.s lib/libc.a lib/libm.a lib/newlib-1.8.2-dc.patch \
   174         aica.x lib-arm/libc.a lib-arm/libm.a lib-arm/crt0.s \
   175 	include/_ansi.h include/_syslist.h include/ar.h include/assert.h include/ctype.h \
   176 	include/dirent.h include/errno.h include/fastmath.h include/fcntl.h include/grp.h \
   177 	include/ieeefp.h include/locale.h include/machine/fastmath.h include/machine/ieeefp.h \
   178 	include/machine/setjmp-dj.h include/machine/setjmp.h include/machine/time.h \
   179 	include/machine/types.h include/malloc.h include/math.h include/paths.h \
   180 	include/process.h include/pwd.h include/reent.h include/regdef.h include/setjmp.h \
   181 	include/signal.h include/stdio.h include/stdlib.h include/string.h include/sys/_types.h \
   182 	include/sys/config.h include/sys/dirent.h include/sys/errno.h include/sys/fcntl.h \
   183 	include/sys/file.h include/sys/param.h include/sys/reent.h include/sys/resource.h \
   184 	include/sys/signal.h include/sys/stat-dj.h include/sys/stat.h include/sys/time.h \
   185 	include/sys/timeb.h include/sys/times.h include/sys/types.h include/sys/unistd.h \
   186 	include/sys/utime.h include/sys/wait.h include/termios.h include/time.h \
   187 	include/unctrl.h include/unistd.h include/utime.h include/utmp.h \
   188 	testsh4 testregs testmmu testta testaica 
   192 distdir: $(DISTFILES)
   193 	$(mkdir_p) $(distdir)/sh4 $(distdir)/lib $(distdir)/include
   194 	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
   195 	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
   196 	list='$(DISTFILES)'; for file in $$list; do \
   197 	  case $$file in \
   198 	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
   199 	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
   200 	  esac; \
   201 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
   202 	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
   203 	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
   204 	    dir="/$$dir"; \
   205 	    $(mkdir_p) "$(distdir)$$dir"; \
   206 	  else \
   207 	    dir=''; \
   208 	  fi; \
   209 	  if test -d $$d/$$file; then \
   210 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
   211 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
   212 	    fi; \
   213 	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
   214 	  else \
   215 	    test -f $(distdir)/$$file \
   216 	    || cp -p $$d/$$file $(distdir)/$$file \
   217 	    || exit 1; \
   218 	  fi; \
   219 	done
   221 dvi:
.