aboutsummaryrefslogtreecommitdiffstats
path: root/palm
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2000-01-28 14:49:33 +0800
committerKris Kennaway <kris@FreeBSD.org>2000-01-28 14:49:33 +0800
commit6e1633a8d06d9779d665a411261e01909da8b620 (patch)
treef390cf865d8114da23fc80e640c0d5bb8dc66fb7 /palm
parent3176ec22e7def779fe7742b5aca03ac6ddefc2ff (diff)
downloadfreebsd-ports-gnome-6e1633a8d06d9779d665a411261e01909da8b620.tar.gz
freebsd-ports-gnome-6e1633a8d06d9779d665a411261e01909da8b620.tar.zst
freebsd-ports-gnome-6e1633a8d06d9779d665a411261e01909da8b620.zip
Respect CXX and CFLAGS
Diffstat (limited to 'palm')
-rw-r--r--palm/pilot_makedoc/files/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/palm/pilot_makedoc/files/Makefile b/palm/pilot_makedoc/files/Makefile
index 3d245f80c487..ce0714d30f2f 100644
--- a/palm/pilot_makedoc/files/Makefile
+++ b/palm/pilot_makedoc/files/Makefile
@@ -2,11 +2,11 @@
# $FreeBSD$
#
-CC= g++
-CFLAGS= -O2
+CXX?= g++
+CFLAGS?=-O2
pilot_makedoc: makedoc7.cpp
- ${CC} -o pilot_makedoc makedoc7.cpp
+ ${CXX} ${CFLAGS} -o pilot_makedoc makedoc7.cpp
#
# EOF