Search
lxdream.org :: lxdream/src/Makefile.am
lxdream 0.9.1
released Jun 29
Download Now
filename src/Makefile.am
changeset 100:995e42e96cc9
prev99:78cbd52afb8d
next103:9b9cfc5855e0
author nkeynes
date Mon Mar 13 12:37:06 2006 +0000 (18 years ago)
permissions -rw-r--r--
last change Add sh4addr_t type, need to start propagating it instead of uint32_t
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 	pvr2/ta.c pvr2/render.c \
    25         maple/maple.c maple/maple.h \
    26         maple/controller.c maple/controller.h \
    27         gui/support.c gui/support.h \
    28         gui/interface.c gui/interface.h \
    29         gui/callbacks.c gui/callbacks.h \
    30         gui/gui.c gui/gui.h gui/mmr_win.c \
    31         gui/debug_win.c gui/dump_win.c \
    32         loader.c bootstrap.c util.c \
    33 	drivers/audio_null.c drivers/audio_esd.c \
    34 	drivers/video_gtk.c drivers/video_gtk.h \
    35 	drivers/video_x11.c drivers/video_x11.h \
    36 	drivers/gl_glx.c
    38 dream_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) -lesd
    40 AM_CFLAGS = -D_ISOC99_SOURCE -D_BSD_SOURCE 
.