filename | src/Makefile.am |
changeset | 106:9048bac046c3 |
prev | 103:9b9cfc5855e0 |
next | 138:afabd7e6d26d |
author | nkeynes |
date | Tue Mar 14 12:45:53 2006 +0000 (17 years ago) |
permissions | -rw-r--r-- |
last change | Move driver selection out to main at long last. Add video NULL driver for headless operation Make dcload exit() actually exit |
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 = dream
11 dream_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 \
17 dreamcast.c dreamcast.h \
18 sh4/intc.c sh4/intc.h sh4/sh4mem.c sh4/timer.c sh4/dmac.c \
19 sh4/sh4core.c sh4/sh4core.h sh4/sh4dasm.c sh4/sh4dasm.h \
20 sh4/sh4mmio.c sh4/sh4mmio.h sh4/scif.c \
21 aica/armcore.c aica/armcore.h aica/armdasm.c aica/armmem.c \
22 aica/aica.c aica/aica.h aica/audio.c aica/audio.h \
23 pvr2/pvr2.c pvr2/pvr2.h \
24 pvr2/ta.c pvr2/render.c \
25 pvr2/texcache.c \
26 maple/maple.c maple/maple.h \
27 maple/controller.c maple/controller.h \
28 gui/support.c gui/support.h \
29 gui/interface.c gui/interface.h \
30 gui/callbacks.c gui/callbacks.h \
31 gui/gui.c gui/gui.h gui/mmr_win.c \
32 gui/debug_win.c gui/dump_win.c \
33 loader.c bootstrap.c util.c \
34 drivers/audio_null.c drivers/audio_esd.c \
35 drivers/video_null.c drivers/video_gtk.c drivers/video_gtk.h \
36 drivers/video_x11.c drivers/video_x11.h
38 dream_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) -lesd
40 AM_CFLAGS = -D_ISOC99_SOURCE -D_BSD_SOURCE
.