Search
lxdream.org :: lxdream/test/Makefile.in
lxdream 0.9.1
released Jun 29
Download Now
filename test/Makefile.in
changeset 812:8cc61d5ea1f8
prev808:da414654f3fa
next815:866c103d72cd
author nkeynes
date Mon Aug 18 12:16:55 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Display opcode as 32-bit word rather than 4 bytes... easier to match up with the manual this way
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 ARMCC		= @ARMCC@
    22 ARMCFLAGS	= -O2 -fno-builtin -fno-strict-aliasing -mlittle-endian
    23 ARMLD		= @ARMLD@
    24 ARMLDFLAGS      = -Wl,-T$(srcdir)/aica.x -nostartfiles -mlittle-endian \
    25                   -nostdlib -L$(srcdir)/lib-arm
    26 ARMLIBS         = -Wl,--start-group -lc -lgcc -lm -Wl,--end-group
    27 ARMOBJCOPY	= @ARMOBJCOPY@ -O binary
    29 RUNTEST		= ../src/lxdream -c $(srcdir)/lxdream.rc -puH -A null
    30 RUNTESTX	= ../src/lxdream -c $(srcdir)/lxdream.rc -xpuH -A null
    32 %.ao: %.c
    33 	$(ARMCC) $(ARMCFLAGS) -o $@ -c $< 
    35 %.ao: %.s
    36 	$(ARMCC) $(ARMCFLAGS) -o $@ -c $< 
    38 %.so: %.c
    39 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $< 
    41 %.so: %.ac
    42 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $< 
    44 %.so: %.s
    45 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $< -Wa,-I$(srcdir)
    47 %.so: %.S
    48 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $< 
    50 %.o: %.c
    51 	$(HOSTCC) $(HOSTCFLAGS) -o $@ -c $<
    53 %.arm: %.ao arm_crt0.ao
    54 	$(ARMCC) -Wl,-Ttext,0x00000000 -nostartfiles -nostdlib -e reset -o $@ arm_crt0.ao $< -lgcc
    57 %.bin: %.arm
    58 	$(ARMOBJCOPY) -O binary $< $@
    60 %.aso: %.bin bin2c
    61 	./bin2c $< $<.c
    62 	$(SH4CC) $(SH4CFLAGS) -o $@ -c $<.c
    64 all:
    66 check: build-tests
    67 	$(RUNTEST) testsh4
    68 	$(RUNTESTX) testsh4
    69 	$(RUNTEST) testmmu
    70 	$(RUNTEST) testregs
    71 	cat $(srcdir)/testta.data $(srcdir)/testta2.data $(srcdir)/testta3.data $(srcdir)/testta4.data $(srcdir)/testta5.data | $(RUNTEST) testta
    72 	cat $(srcdir)/testsort.data | $(RUNTEST) testta
    73 #	$(RUNTEST) testide -d ../disc/test.nrg
    76 build-tests: testsh4 testmath testide testta testregs testrend testdisp testspu testmmu
    78 testsh4: lib/crt0.so sh4/testsh4.so timer.so interrupt.so \
    79 	 sh4/add.so sh4/addc.so sh4/addv.so sh4/and.so sh4/andi.so \
    80 	 sh4/bf.so sh4/bsr.so sh4/bt.so sh4/cmp.so sh4/cmpstr.so \
    81 	 sh4/div0.so sh4/div1.so sh4/float.so sh4/fmov.so sh4/ftrc.so \
    82 	 sh4/mac.so \
    83 	 sh4/rot.so sh4/shl.so sh4/shld.so sh4/sub.so sh4/subc.so \
    84 	 sh4/trapa.so sh4/tas.so sh4/xtrct.so \
    85 	 sh4/excslot.so sh4/undef.so sh4/tlb.so sh4/vmexit.so
    86 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
    87 	$(SH4OBJCOPY) testsh4 testsh4.bin
    89 testide: lib/crt0.so testide.so ide.so lib.so testdata.so
    90 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
    91 	$(SH4OBJCOPY) testide testide.bin
    93 testmmu: lib/crt0.so testmmu.so lib.so 
    94 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
    95 	$(SH4OBJCOPY) testmmu testmmu.bin
    97 testmath: lib/crt0.so $(SHARED_OBJECTS) testmath.so math.so
    98 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   100 testregs: lib/crt0.so $(SHARED_OBJECTS) testregs.so ide.so
   101 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   102 	$(SH4OBJCOPY) testregs testregs.bin
   104 testta: lib/crt0.so $(SHARED_OBJECTS) testta.so pvr.so dmac.so asic.so lib.so testdata.so
   105 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   106 	$(SH4OBJCOPY) testta testta.bin
   108 testaica: lib/crt0.so $(SHARED_OBJECTS) testaica.so dmac.so asic.so lib.so
   109 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
   110 	$(SH4OBJCOPY) testaica testaica.bin
   112 testrend: lib/crt0.so $(SHARED_OBJECTS) testrend.so pvr.so dmac.so asic.so lib.so testdata.so
   113 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   114 	$(SH4OBJCOPY) testrend testrend.bin
   116 testblend: lib/crt0.so $(SHARED_OBJECTS) testblend.so pvr.so dmac.so asic.so lib.so testdata.so
   117 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   118 	$(SH4OBJCOPY) testblend testblend.bin
   120 testdisp: lib/crt0.so $(SHARED_OBJECTS) testdisp.so pvr.so asic.so lib.so testdata.so timer.so
   121 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   122 	$(SH4OBJCOPY) testdisp testdisp.bin
   124 testyuv: lib/crt0.so $(SHARED_OBJECTS) testyuv.so pvr.so asic.so lib.so testdata.so timer.so dmac.so
   125 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   126 	$(SH4OBJCOPY) testyuv testyuv.bin
   128 testspu: lib/crt0.so $(SHARED_OBJECTS) testspu.so asic.so lib.so testdata.so timer.so dmac.so
   129 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   130 	$(SH4OBJCOPY) testspu testspu.bin
   132 testg2: lib/crt0.so $(SHARED_OBJECTS) testg2.so asic.so lib.so testdata.so timer.so dmac.so
   133 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   134 	$(SH4OBJCOPY) testg2 testg2.bin
   136 readdata: lib/crt0.so readdata.so
   137 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
   139 rend: lib/crt0.so rendload.so asic.so lib.so timer.so pvr.so
   140 	$(SH4CC) $(SH4LDFLAGS) $^ -o $@ $(SH4LIBS)
   141 	$(SH4OBJCOPY) rend rend.bin
   143 testFF10: lib/crt0.so testFF10.so lib.so
   144 	$(SH4CC) $(SH4LDFLAGS) $^  -o $@ $(SH4LIBS)
   145 	$(SH4OBJCOPY) testFF10 testFF10.bin
   147 .PHONY : clean
   148 clean:
   149 	rm -f *.o *.so *.ao *.ac *.bin sh4/*.so mapleid ide readmem dumpasic \
   150 	   testsh4 testta testdisp testregs testide testmath testmmu \
   151 	   testrend testspu dcflash.rom
   153 distclean: clean
   154 	rm -f Makefile
   156 install:
   158 installcheck:
   160 uninstall:
   162 DISTFILES = asic.c asic.h bin2c.c dma.h dmac.c ide.c ide.h interrupt.s \
   163         lib.c lib.h math.s pvr.c pvr.h rendload.c sh4/add.s sh4/addc.s \
   164         sh4/addv.s sh4/and.s sh4/andi.s sh4/bf.s sh4/bsr.s sh4/bt.s sh4/cmp.s \
   165         sh4/cmpstr.s sh4/div0.s sh4/div1.s sh4/excslot.s sh4/float.s sh4/fmov.s \
   166         sh4/ftrc.s sh4/inc.s sh4/mac.s sh4/rot.s sh4/shl.s sh4/shld.s sh4/sub.s \
   167         sh4/subc.s sh4/tas.s sh4/testsh4.c sh4/tlb.s sh4/vmexit.s sh4/trapa.s sh4/undef.s \
   168         sh4/xtrct.s testdata.c testdata.h testdisp.c testide.c testmath.c \
   169         testmmu.c testregs.c testrend.c testspu.c testta.c testyuv.c timer.c timer.h \
   170         testta.data testta2.data testta3.data testta4.data testta5.data testsort.data \
   171         lxdream.rc dc.x lib/crt0.s lib/libc.a lib/libm.a lib/newlib-1.8.2-dc.patch \
   172         aica.x lib-arm/libc.a lib-arm/libm.a lib-arm/crt0.s \
   173 	include/_ansi.h include/_syslist.h include/ar.h include/assert.h include/ctype.h \
   174 	include/dirent.h include/errno.h include/fastmath.h include/fcntl.h include/grp.h \
   175 	include/ieeefp.h include/locale.h include/machine/fastmath.h include/machine/ieeefp.h \
   176 	include/machine/setjmp-dj.h include/machine/setjmp.h include/machine/time.h \
   177 	include/machine/types.h include/malloc.h include/math.h include/paths.h \
   178 	include/process.h include/pwd.h include/reent.h include/regdef.h include/setjmp.h \
   179 	include/signal.h include/stdio.h include/stdlib.h include/string.h include/sys/_types.h \
   180 	include/sys/config.h include/sys/dirent.h include/sys/errno.h include/sys/fcntl.h \
   181 	include/sys/file.h include/sys/param.h include/sys/reent.h include/sys/resource.h \
   182 	include/sys/signal.h include/sys/stat-dj.h include/sys/stat.h include/sys/time.h \
   183 	include/sys/timeb.h include/sys/times.h include/sys/types.h include/sys/unistd.h \
   184 	include/sys/utime.h include/sys/wait.h include/termios.h include/time.h \
   185 	include/unctrl.h include/unistd.h include/utime.h include/utmp.h
   189 distdir:
   190 	$(mkdir_p) $(distdir)/sh4 $(distdir)/lib $(distdir)/include
   191 	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
   192 	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
   193 	list='$(DISTFILES)'; for file in $$list; do \
   194 	  case $$file in \
   195 	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
   196 	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
   197 	  esac; \
   198 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
   199 	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
   200 	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
   201 	    dir="/$$dir"; \
   202 	    $(mkdir_p) "$(distdir)$$dir"; \
   203 	  else \
   204 	    dir=''; \
   205 	  fi; \
   206 	  if test -d $$d/$$file; then \
   207 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
   208 	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
   209 	    fi; \
   210 	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
   211 	  else \
   212 	    test -f $(distdir)/$$file \
   213 	    || cp -p $$d/$$file $(distdir)/$$file \
   214 	    || exit 1; \
   215 	  fi; \
   216 	done
   218 dvi:
.