Search
lxdream.org :: lxdream/src/Makefile.am
lxdream 0.9.1
released Jun 29
Download Now
filename src/Makefile.am
changeset 359:c588dce7ebde
prev352:f0df7a6d4703
next363:7d0bab24016c
author nkeynes
date Tue Aug 28 08:46:54 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Add the i386 disassembler from binutils (why write your own if you don't
have to) to use for translator validation
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/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 \
    27         aica/armcore.c aica/armcore.h aica/armdasm.c aica/armmem.c \
    28         aica/aica.c aica/aica.h aica/audio.c aica/audio.h \
    29 	pvr2/pvr2.c pvr2/pvr2.h pvr2/pvr2mem.c \
    30 	pvr2/tacore.c pvr2/render.c pvr2/rendcore.c pvr2/rendbkg.c pvr2/rendsort.c \
    31 	pvr2/texcache.c pvr2/yuv.c pvr2/rendsave.c \
    32         maple/maple.c maple/maple.h \
    33         maple/controller.c maple/controller.h \
    34         gui/support.c gui/support.h \
    35         gui/interface.c gui/interface.h \
    36         gui/callbacks.c gui/callbacks.h \
    37         gui/gui.c gui/gui.h gui/mmr_win.c \
    38         gui/debug_win.c gui/dump_win.c \
    39         loader.c bootstrap.c util.c \
    40 	display.c display.h \
    41 	drivers/audio_null.c drivers/audio_esd.c \
    42 	drivers/video_null.c drivers/video_gtk.c drivers/video_gtk.h \
    43 	drivers/video_x11.c drivers/video_x11.h \
    44 	drivers/gl_common.c drivers/gl_common.h drivers/gl_fbo.c
    46 lxdream_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) -lesd
    48 gendec_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
    50 TESTS = test/testxlt
    52 check_PROGRAMS = test/testxlt
    54 test_testxlt_SOURCES = test/testxlt.c sh4/xltcache.c sh4/xltcache.h 
    56 AM_CFLAGS = -D_ISOC99_SOURCE -D_BSD_SOURCE 
    58 sh4/sh4core.c: gendec sh4/sh4.def sh4/sh4core.in
    59 	./gendec sh4/sh4.def sh4/sh4core.in -o sh4/sh4core.c
    60 sh4/sh4dasm.c: gendec sh4/sh4.def sh4/sh4dasm.in
    61 	./gendec sh4/sh4.def sh4/sh4dasm.in -o sh4/sh4dasm.c
    62 sh4/sh4x86.c: gendec sh4/sh4.def sh4/sh4x86.in
    63 	./gendec sh4/sh4.def sh4/sh4x86.in -o sh4/sh4x86.c
.