filename | src/Makefile.am |
changeset | 99:78cbd52afb8d |
prev | 94:8d80d9c7cc7d |
next | 100:995e42e96cc9 |
author | nkeynes |
date | Wed Feb 15 12:41:02 2006 +0000 (17 years ago) |
permissions | -rw-r--r-- |
last change | Reorg files slightly (move audio drivers into drivers, pvr2 code into its own directory) |
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 bios.c bios.h \
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 maple/maple.c maple/maple.h \
25 maple/controller.c maple/controller.h \
26 gui/support.c gui/support.h \
27 gui/interface.c gui/interface.h \
28 gui/callbacks.c gui/callbacks.h \
29 gui/gui.c gui/gui.h gui/mmr_win.c \
30 gui/debug_win.c gui/dump_win.c \
31 loader.c bootstrap.c util.c \
32 drivers/audio_null.c drivers/audio_esd.c \
33 drivers/video_gtk.c drivers/video_gtk.h \
34 drivers/video_x11.c drivers/video_x11.h \
35 drivers/gl_glx.c
37 dream_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) -lesd
39 AM_CFLAGS = -D_ISOC99_SOURCE -D_BSD_SOURCE
.