diff options
author | Maho Nakata <maho@FreeBSD.org> | 2003-07-20 11:51:27 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2003-07-20 11:51:27 +0000 |
commit | a20e7c4696930974c482b099bdacd6ee3b9bf343 (patch) | |
tree | 3ade19dd7a3acabb0d2329c216e595a3eb720e7f /emulators/fceux/files/patch-Makefile.unixsdl | |
parent | Update to 0.7.1 (diff) |
FCE Ultra is an NTSC and PAL Famicom/NES emulator for various
platforms, distributed under GPL. It is based upon Bero's original
FCE source code. Current features include good PPU, CPU, pAPU,
expansion chip, and joystick emulation.
PR: 45166
Submitted by: HIYAMA Takeshi <cbc06942@pop06.odn.ne.jp>
Notes
Notes:
svn path=/head/; revision=85227
Diffstat (limited to 'emulators/fceux/files/patch-Makefile.unixsdl')
-rw-r--r-- | emulators/fceux/files/patch-Makefile.unixsdl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/emulators/fceux/files/patch-Makefile.unixsdl b/emulators/fceux/files/patch-Makefile.unixsdl new file mode 100644 index 000000000000..3667c18b3be4 --- /dev/null +++ b/emulators/fceux/files/patch-Makefile.unixsdl @@ -0,0 +1,18 @@ +--- Makefile.unixsdl.orig Fri Jun 20 12:50:03 2003 ++++ Makefile.unixsdl Sun Jul 20 20:43:22 2003 +@@ -1,5 +1,5 @@ + CC = gcc +-TFLAGS = -DFRAMESKIP -DSTDIOIFACE -DUNIXDSP -DNETWORK -DFPS `sdl-config --cflags` -mcpu=i686 -O2 -Izlib -fomit-frame-pointer -DC80x86 -DLSB_FIRST -DSDL -DUNIX -DPSS_STYLE=1 -DZLIB ++TFLAGS = -DFRAMESKIP -DSTDIOIFACE -DUNIXDSP -DNETWORK -DFPS `%%LOCALBASE%%/bin/sdl11-config --cflags` -Izlib -DC80x86 -DLSB_FIRST -DSDL -DUNIX -DPSS_STYLE=1 -DZLIB %%CFLAGS%% + + RM = rm -f + B = drivers/cli/ +@@ -9,7 +9,7 @@ + include zlib/Makefile + + OBJDRIVER = ${B}sdl.o ${B}interface.o ${B}main.o ${B}sdl-throttle.o ${B}unix-netplay.o ${B}sdl-sound.o ${B}sdl-video.o ${B}sdl-joystick.o drivers/common/cheat.o drivers/common/config.o drivers/common/args.o drivers/common/vidblit.o drivers/common/unixdsp.o ${UNZIPOBJS} +-LDRIVER = -lm `sdl-config --libs` -lz ++LDRIVER = -lm `%%LOCALBASE%%/bin/sdl11-config --libs` -lz + + include Makefile.base + |