Search
lxdream.org :: lxdream/src/Makefile.am :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/Makefile.am
changeset 359:c588dce7ebde
prev352:f0df7a6d4703
next363:7d0bab24016c
author nkeynes
date Thu Aug 23 12:33:27 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Commit decoder generator
Translator work in progress
Fix mac.l, mac.w in emu core
file annotate diff log raw
1.1 --- a/src/Makefile.am Sun Feb 11 10:09:32 2007 +0000
1.2 +++ b/src/Makefile.am Thu Aug 23 12:33:27 2007 +0000
1.3 @@ -6,7 +6,11 @@
1.4 -Ish4 \
1.5 @PACKAGE_CFLAGS@
1.6
1.7 -bin_PROGRAMS = lxdream
1.8 +bin_PROGRAMS = gendec lxdream
1.9 +
1.10 +BUILT_SOURCES = sh4/sh4core.c sh4/sh4dasm.c sh4/sh4x86.c
1.11 +
1.12 +gendec_SOURCES = tools/gendec.c tools/gendec.h tools/insparse.c tools/actparse.c
1.13
1.14 lxdream_SOURCES = \
1.15 main.c \
1.16 @@ -18,7 +22,8 @@
1.17 dreamcast.c dreamcast.h eventq.c eventq.h \
1.18 sh4/intc.c sh4/intc.h sh4/sh4mem.c sh4/timer.c sh4/dmac.c \
1.19 sh4/sh4core.c sh4/sh4core.h sh4/sh4dasm.c sh4/sh4dasm.h \
1.20 - sh4/sh4mmio.c sh4/sh4mmio.h sh4/scif.c \
1.21 + sh4/sh4mmio.c sh4/sh4mmio.h sh4/scif.c sh4/xltcache.c sh4/xltcache.h \
1.22 + sh4/sh4trans.c sh4/sh4trans.h sh4/sh4x86.c \
1.23 aica/armcore.c aica/armcore.h aica/armdasm.c aica/armmem.c \
1.24 aica/aica.c aica/aica.h aica/audio.c aica/audio.h \
1.25 pvr2/pvr2.c pvr2/pvr2.h pvr2/pvr2mem.c \
1.26 @@ -40,4 +45,19 @@
1.27
1.28 lxdream_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) -lesd
1.29
1.30 +gendec_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
1.31 +
1.32 +TESTS = test/testxlt
1.33 +
1.34 +check_PROGRAMS = test/testxlt
1.35 +
1.36 +test_testxlt_SOURCES = test/testxlt.c sh4/xltcache.c sh4/xltcache.h
1.37 +
1.38 AM_CFLAGS = -D_ISOC99_SOURCE -D_BSD_SOURCE
1.39 +
1.40 +sh4/sh4core.c: gendec sh4/sh4.def sh4/sh4core.in
1.41 + ./gendec sh4/sh4.def sh4/sh4core.in -o sh4/sh4core.c
1.42 +sh4/sh4dasm.c: gendec sh4/sh4.def sh4/sh4dasm.in
1.43 + ./gendec sh4/sh4.def sh4/sh4dasm.in -o sh4/sh4dasm.c
1.44 +sh4/sh4x86.c: gendec sh4/sh4.def sh4/sh4x86.in
1.45 + ./gendec sh4/sh4.def sh4/sh4x86.in -o sh4/sh4x86.c
.