diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-09-20 09:56:08 +0800 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-09-20 09:56:08 +0800 |
commit | c08a964e2e9a50f36af8f9b3c1b26aa0e66f7125 (patch) | |
tree | fca672f05bb02605777186b7859e5f2b0a4bf2eb /emulators/snes9x/Makefile | |
parent | 93c0acf4712328daca88daacdba0f6fcf563e201 (diff) | |
download | freebsd-ports-gnome-c08a964e2e9a50f36af8f9b3c1b26aa0e66f7125.tar.gz freebsd-ports-gnome-c08a964e2e9a50f36af8f9b3c1b26aa0e66f7125.tar.zst freebsd-ports-gnome-c08a964e2e9a50f36af8f9b3c1b26aa0e66f7125.zip |
o Support CC/CXX
o Support CFLAGS/CXXFLAGS
o Make this actually build on my system (alfred had the same problem,
but, oddly enough, green didn't)
Diffstat (limited to 'emulators/snes9x/Makefile')
-rw-r--r-- | emulators/snes9x/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/snes9x/Makefile b/emulators/snes9x/Makefile index ccfb5cdeade3..0b63c6b94bba 100644 --- a/emulators/snes9x/Makefile +++ b/emulators/snes9x/Makefile @@ -21,9 +21,9 @@ MAKEFILE= Makefile.alpha USE_GMAKE= YES USE_X_PREFIX= YES - +MAKE_ENV= CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" USE_ZIP= YES - WRKSRC= ${WRKDIR}/release ONLY_FOR_ARCHS= i386 alpha |