Search
lxdream.org :: lxdream/src/Makefile.am
lxdream 0.9.1
released Jun 29
Download Now
filename src/Makefile.am
changeset 387:38e9fddbf0e3
prev378:f10fbdd4e24b
next405:570d93abb5b7
author nkeynes
date Tue Sep 18 10:48:57 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Remove debugger from default startup - now only shown if started with -D
view annotate diff log raw
     1 ## Process this file with automake to produce Makefile.in
     3 INCLUDES = \
     4 	-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
     5 	-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
     6         -Ish4 \
     7 	@PACKAGE_CFLAGS@
     9 bin_PROGRAMS = gendec lxdream
    11 BUILT_SOURCES = sh4/sh4core.c sh4/sh4dasm.c sh4/sh4x86.c
    13 gendec_SOURCES = tools/gendec.c tools/gendec.h tools/insparse.c tools/actparse.c
    15 lxdream_SOURCES = \
    16         main.c \
    17         mem.c mem.h mmio.h watch.c \
    18         asic.c asic.h \
    19         syscall.c syscall.h bios.c dcload.c \
    20         gdrom/ide.c gdrom/ide.h gdrom/packet.h gdrom/gdimage.c \
    21 	gdrom/gdrom.c gdrom/gdrom.h gdrom/nrg.c gdrom/cdi.c gdrom/linux.c \
    22         dreamcast.c dreamcast.h eventq.c eventq.h \
    23         sh4/sh4.c sh4/intc.c sh4/intc.h sh4/sh4mem.c sh4/timer.c sh4/dmac.c \
    24         sh4/sh4core.c sh4/sh4core.h sh4/sh4dasm.c sh4/sh4dasm.h \
    25         sh4/sh4mmio.c sh4/sh4mmio.h sh4/scif.c sh4/xltcache.c sh4/xltcache.h \
    26         sh4/sh4trans.c sh4/sh4trans.h sh4/sh4x86.c sh4/sh4stat.c sh4/sh4stat.h \
    27         x86dasm/x86dasm.c x86dasm/x86dasm.h \
    28         x86dasm/i386-dis.c x86dasm/dis-init.c x86dasm/dis-buf.c \
    29         aica/armcore.c aica/armcore.h aica/armdasm.c aica/armmem.c \
    30         aica/aica.c aica/aica.h aica/audio.c aica/audio.h \
    31 	pvr2/pvr2.c pvr2/pvr2.h pvr2/pvr2mem.c \
    32 	pvr2/tacore.c pvr2/render.c pvr2/rendcore.c pvr2/rendbkg.c pvr2/rendsort.c \
    33 	pvr2/texcache.c pvr2/yuv.c pvr2/rendsave.c \
    34         maple/maple.c maple/maple.h \
    35         maple/controller.c maple/controller.h \
    36         gui/support.c gui/support.h \
    37         gui/interface.c gui/interface.h \
    38         gui/callbacks.c gui/callbacks.h \
    39         gui/gui.c gui/gui.h gui/mmr_win.c \
    40         gui/debug_win.c gui/dump_win.c \
    41         loader.c bootstrap.c util.c \
    42 	display.c display.h \
    43 	drivers/audio_null.c drivers/audio_esd.c \
    44 	drivers/video_null.c drivers/video_gtk.c drivers/video_gtk.h \
    45 	drivers/video_x11.c drivers/video_x11.h \
    46 	drivers/gl_common.c drivers/gl_common.h drivers/gl_fbo.c
    48 lxdream_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) -lesd
    50 gendec_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
    52 TESTS = test/testxlt
    54 check_PROGRAMS = test/testxlt test/testsh4x86
    56 test_testxlt_SOURCES = test/testxlt.c sh4/xltcache.c sh4/xltcache.h 
    58 test_testsh4x86_SOURCES = test/testsh4x86.c x86dasm/x86dasm.c \
    59 	x86dasm/x86dasm.h x86dasm/i386-dis.c x86dasm/dis-init.c \
    60 	x86dasm/dis-buf.c \
    61 	sh4/sh4dasm.c sh4/sh4trans.c sh4/sh4x86.c sh4/xltcache.c \
    62 	sh4/xltcache.h mem.c util.c
    63 test_testsh4x86_LDADD = @PACKAGE_LIBS@
    65 AM_CFLAGS = -D_ISOC99_SOURCE -D_BSD_SOURCE 
    67 sh4/sh4core.c: gendec sh4/sh4.def sh4/sh4core.in
    68 	./gendec sh4/sh4.def sh4/sh4core.in -o sh4/sh4core.c
    69 sh4/sh4dasm.c: gendec sh4/sh4.def sh4/sh4dasm.in
    70 	./gendec sh4/sh4.def sh4/sh4dasm.in -o sh4/sh4dasm.c
    71 sh4/sh4x86.c: gendec sh4/sh4.def sh4/sh4x86.in
    72 	./gendec sh4/sh4.def sh4/sh4x86.in -o sh4/sh4x86.c
    73 sh4/sh4stat.c: gendec sh4/sh4.def sh4/sh4stat.in
    74 	./gendec sh4/sh4.def sh4/sh4stat.in -o sh4/sh4stat.c
.