1
0
mirror of https://git.code.sf.net/p/fuse-emulator/fuse synced 2026-01-30 04:22:18 +03:00
Files
fuse/Makefile.am
Stuart Brady fe5360d34c Merge 2007-06-09-plusd to r2993.
Legacy-ID: 2997
2007-06-17 16:17:20 +00:00

197 lines
3.5 KiB
Makefile

## Process this file with automake to produce Makefile.in
## Copyright (c) 1999-2004 Philip Kendall
## $Id$
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License along
## with this program; if not, write to the Free Software Foundation, Inc.,
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
##
## Author contact information:
##
## E-mail: philip-fuse@shadowmagic.org.uk
AUTOMAKE_OPTIONS = foreign
bin_PROGRAMS = fuse
SUBDIRS = compat \
debugger \
@DISK@ \
hacking \
lib \
machines \
man \
perl \
pokefinder \
roms \
sound \
ui \
@WIDGET@ \
z80
DIST_SUBDIRS = compat \
debugger \
disk \
hacking \
lib \
machines \
man \
perl \
pokefinder \
roms \
sound \
ui \
widget \
z80
fuse_SOURCES = ay.c \
dck.c \
display.c \
divide.c \
event.c \
fuse.c \
ide.c \
if1.c \
if2.c \
input.c \
joystick.c \
kempmouse.c \
keyboard.c \
loader.c \
machine.c \
memory.c \
menu.c \
module.c \
periph.c \
printer.c \
profile.c \
psg.c \
rzx.c \
scld.c \
screenshot.c \
settings.c \
simpleide.c \
slt.c \
snapshot.c \
sound.c \
spectrum.c \
tape.c \
timer.c \
trdos.c \
ui.c \
uidisplay.c \
ula.c \
utils.c \
windres.rc \
zxatasp.c \
zxcf.c
EXTRA_fuse_SOURCES = windres.rc
fuse_LDADD = debugger/libdebugger.a \
@UI_LIBS@ \
@DISK_LIBS@ \
machines/libmachines.a \
pokefinder/libpokefinder.a \
sound/libsound.a \
ui/scaler/libscaler.a \
debugger/libdebugger.a \
z80/libz80.a \
@DSKLIBS@ \
@LIBSPEC_LIBS@ \
@GLIB_LIBS@ \
@PNG_LIBS@ \
@ASOUND_LIBS@ \
@AO_LIBS@ \
@SAMPLERATE_LIBS@ \
@DIRECTSOUND_LIBS@ \
@COREAUDIO_LIBS@ \
@X_LIBS@ \
@XML_LIBS@ \
compat/libcompat.a \
@WINDRES_OBJ@
fuse_DEPENDENCIES = @UI_LIBS@ \
@DISK_LIBS@ \
debugger/libdebugger.a \
machines/libmachines.a \
sound/libsound.a \
z80/libz80.a \
@WINDRES_OBJ@
BUILT_SOURCES = settings.c settings.h
windres.o: windres.rc winfuse.ico
@WINDRES@ windres.rc windres.o
settings.c: settings.pl settings.dat
@PERL@ settings.pl settings.dat > settings.c
settings.h: settings-header.pl settings.dat
@PERL@ settings-header.pl settings.dat > settings.h
INCLUDES = @GLIB_CFLAGS@ @GTK_CFLAGS@ @LIBSPEC_CFLAGS@ @DSK_CFLAGS@\
@XML_CFLAGS@ @SAMPLERATE_CFLAGS@ -DFUSEDATADIR="\"${pkgdatadir}\""
noinst_HEADERS = ay.h \
compat.h \
dck.h \
display.h \
divide.h \
event.h \
fuse.h \
ide.h \
if1.h \
if2.h \
input.h \
keyboard.h \
kempmouse.h \
loader.h \
machine.h \
memory.h \
menu.h \
module.h \
periph.h \
psg.h \
rzx.h \
screenshot.h \
settings.h \
simpleide.h \
slt.h \
snapshot.h \
sound.h \
spectrum.h \
tape.h \
timer.h \
trdos.h \
utils.h \
joystick.h \
printer.h \
profile.h \
scld.h \
ula.h \
zxatasp.h \
zxcf.h
EXTRA_DIST = AUTHORS \
README \
THANKS \
keysyms.dat \
keysyms.pl \
menu_data.dat \
menu_data.pl \
settings.pl \
settings-header.pl \
settings.dat