diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-01-13 14:29:56 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-01-13 14:29:56 +0000 |
commit | fb5c0d61d5a44ef90a78f458db032d31b2a5534f (patch) | |
tree | b54421270ebf08bee6d03eddc996356877db9210 /emulators/stella/files/patch-src::ui::sound::makefile | |
parent | Update to 0.4.10 (diff) |
Support CC/CFLAGS/CXX/CXXFLAGS properly
PR: 46944
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Notes
Notes:
svn path=/head/; revision=73046
Diffstat (limited to 'emulators/stella/files/patch-src::ui::sound::makefile')
-rw-r--r-- | emulators/stella/files/patch-src::ui::sound::makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/emulators/stella/files/patch-src::ui::sound::makefile b/emulators/stella/files/patch-src::ui::sound::makefile new file mode 100644 index 000000000000..037b08b5012f --- /dev/null +++ b/emulators/stella/files/patch-src::ui::sound::makefile @@ -0,0 +1,14 @@ +--- src/ui/sound/makefile.orig Fri Dec 28 04:54:36 2001 ++++ src/ui/sound/makefile Tue Jan 7 09:10:08 2003 +@@ -1,9 +1,9 @@ + ############################################################################### + ## C compiler to use + ############################################################################### +-CC = gcc ++CC ?= gcc + +-CFLAGS = -DWIN32 -O -ansi -Wall ++CFLAGS += -DWIN32 + + OBJS = TIASound.o + |