summaryrefslogtreecommitdiff
path: root/games/cryptoslam
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-08-23 05:14:50 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-08-23 05:14:50 +0000
commitc63b3e73181d0c4512c14d72aad058147fde4d06 (patch)
tree78c64fbd4e5c8372c55c3e5017724dca6b3d477e /games/cryptoslam
parentRemove explicit dependency already covered by USE_GNOMELIBS. (diff)
Respect CXX and CXXFLAGS, and link with CXX, not gcc.
Notes
Notes: svn path=/head/; revision=64860
Diffstat (limited to 'games/cryptoslam')
-rw-r--r--games/cryptoslam/files/patch-Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/games/cryptoslam/files/patch-Makefile b/games/cryptoslam/files/patch-Makefile
new file mode 100644
index 000000000000..8893734e20fe
--- /dev/null
+++ b/games/cryptoslam/files/patch-Makefile
@@ -0,0 +1,17 @@
+--- Makefile.orig Thu Aug 22 22:12:38 2002
++++ Makefile Thu Aug 22 22:13:36 2002
+@@ -12,12 +12,12 @@
+ all: cryptoslam
+
+ cryptoslam: $(O_FILES)
+- gcc -o cryptoslam $(LIB_FLAGS) $(O_FILES)
++ ${CXX} -o cryptoslam $(LIB_FLAGS) $(O_FILES)
+
+ clean:
+ rm -f cryptoslam core tmp.tmp *.o
+
+ %.o: %.c
+- gcc $(CFLAGS) $(INCLUDE_FLAGS) -c $<
++ ${CXX} $(CXXFLAGS) $(INCLUDE_FLAGS) -c $<
+
+