filename | src/Makefile.am |
changeset | 9:2784c7660165 |
prev | 2:42349f6ea216 |
next | 10:c898b37506e0 |
author | nkeynes |
date | Thu Dec 08 13:38:00 2005 +0000 (15 years ago) |
permissions | -rw-r--r-- |
last change | Generalise the core debug window to allow multiple instances. Add cpu description structure to define different cpus for use by the debug window, in preparation for ARM implementation |
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 support.c support.h \
14 interface.c interface.h \
15 callbacks.c callbacks.h \
16 gui.c gui.h mmr_win.c debug_win.c dump_win.c \
17 asic.c asic.h pvr2.c pvr2.h ide.c ide.h \
18 video.c dreamcast.c dreamcast.h aica.c aica.h\
19 maple.c maple.h maple/controller.c maple/controller.h \
20 sh4/intc.c sh4/intc.h sh4/mem.c sh4/mem.h sh4/mmio.h \
21 sh4/sh4core.c sh4/sh4core.h sh4/sh4dasm.c sh4/sh4dasm.h \
22 sh4/sh4mmio.c sh4/sh4mmio.h sh4/watch.c \
23 fileio.c ipbin.c
24 ## aica/armcore.c aica/armcore.h aica/armdasm.c \
26 dream_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
28 AM_CFLAGS = -D_ISOC99_SOURCE -D_BSD_SOURCE
.