1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/editors/xenon/files/patch-ab
Chris D. Faulhaber 4939870d11 Remove gmake dependency
PR:		15085
Submitted by:	Mikhail Teterin <mi@kot.ne.mediaone.net>
1999-12-22 14:08:58 +00:00

31 lines
632 B
Plaintext

--- makefiles/Makefile.FreeBSD.orig Fri Oct 22 00:20:20 1999
+++ makefiles/Makefile.FreeBSD Fri Oct 22 18:36:19 1999
@@ -6,18 +6,18 @@
include makefiles/Makefile.common
-CC = c++
+CC = $(CXX)
#CC = /usr/local/bin/c++
-OPTIMIZER = -O2
+#OPTIMIZER = -O2
#ARCH = -b i586-pc-linux-gnulibc1
ARCH =
# For making a dso, add -fPIC
-CCFLAGS = $(OPTIMIZER) -pipe -Wall -fno-exceptions
+CCFLAGS = $(CXXFLAGS) $(CFLAGS)
-INCLUDES = -I$(XEINC)
+INCLUDES = -I$(XEINC) -I/usr/X11R6/include
LIBS = -L/usr/X11R6/lib -lXpm -lX11
backup:
@@ -29,4 +29,3 @@
floppy:
cd ..;tar -cvzf /dev/fd0 $(BACKUP)
--include $(DEPEND)