Search
lxdream.org :: lxdream/src/Makefile.am
lxdream 0.9.1
released Jun 29
Download Now
filename src/Makefile.am
changeset 189:615b70cfd729
prev180:e6dcf9b65658
next219:dfd3292143f2
author nkeynes
date Sat Aug 05 00:18:21 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change Add error lines to tests with incomplete polys
Split clip tests to separate data file
Add tests for cmd bit 23 ("use list size field")
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 = lxdream
    11 lxdream_SOURCES = \
    12         main.c \
    13         mem.c mem.h mmio.h watch.c \
    14         asic.c asic.h \
    15         syscall.c syscall.h bios.c dcload.c \
    16         gdrom/ide.c gdrom/ide.h gdrom/packet.h \
    17 	gdrom/gdrom.c gdrom/gdrom.h gdrom/nrg.c gdrom/cdi.c \
    18         dreamcast.c dreamcast.h \
    19         sh4/intc.c sh4/intc.h sh4/sh4mem.c sh4/timer.c sh4/dmac.c \
    20         sh4/sh4core.c sh4/sh4core.h sh4/sh4dasm.c sh4/sh4dasm.h \
    21         sh4/sh4mmio.c sh4/sh4mmio.h sh4/scif.c \
    22         aica/armcore.c aica/armcore.h aica/armdasm.c aica/armmem.c \
    23         aica/aica.c aica/aica.h aica/audio.c aica/audio.h \
    24 	pvr2/pvr2.c pvr2/pvr2.h \
    25 	pvr2/tacore.c pvr2/render.c pvr2/rendcore.c \
    26 	pvr2/texcache.c \
    27         maple/maple.c maple/maple.h \
    28         maple/controller.c maple/controller.h \
    29         gui/support.c gui/support.h \
    30         gui/interface.c gui/interface.h \
    31         gui/callbacks.c gui/callbacks.h \
    32         gui/gui.c gui/gui.h gui/mmr_win.c \
    33         gui/debug_win.c gui/dump_win.c \
    34         loader.c bootstrap.c util.c \
    35 	display.c display.h \
    36 	drivers/audio_null.c drivers/audio_esd.c \
    37 	drivers/video_null.c drivers/video_gtk.c drivers/video_gtk.h \
    38 	drivers/video_x11.c drivers/video_x11.h
    40 lxdream_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) -lesd
    42 AM_CFLAGS = -D_ISOC99_SOURCE -D_BSD_SOURCE 
.