openbsd-ports/math/abs/patches/patch-Makefile
espie 72ce5b4fe2 okay, we've got strcasecmp in libc now.
Also kill this tolower() which doesn't match ctype.h.

(note to self: check WANTLIB before extract too ?)
2005-04-03 16:14:44 +00:00

48 lines
1.5 KiB
Plaintext

--- Makefile.orig Wed Nov 15 20:59:20 2000
+++ Makefile Sun Apr 3 18:06:11 2005
@@ -1,7 +1,7 @@
CURRENT_DIR = .
-SUBDIRS = Xpm ABV X11 Kernel Plot Database Fig Interface X11/xedit SAMCEF
+SUBDIRS = ABV X11 Kernel Plot Database Fig Interface X11/xedit SAMCEF
SUBDIRS2 = ABV X11 Kernel Plot Database Fig Interface
MAKE = make
@@ -10,7 +10,7 @@ MAKE = make
#for silicon: LIBS = -lXaw -lX11 -lm -lXt -lXmu -lXext
#for hp LIBS = -L /lib/X11 -L /usr/X11R6/lib -L /usr/contrib/X11R6/lib -lXaw -lX11 -lm -lXt -lXmu -lXext
#for netBSD LIBS = -L /usr/lib -L /usr/X11R6/lib -lXaw -lX11 -lm -lXt -lXmu -lXext
-LIBS = -L /lib/X11 -L /usr/X11R6/lib -L /usr/contrib/X11R6/lib -lXaw -lX11 -lm -lXt -lXmu -lXext
+LIBS = -L${X11BASE}/lib -lXaw -lXpm -lX11 -lm -lXt -lXmu -lXext
#for hp DEFINE = -D_HPUX_SOURCE
DEFINE =
@@ -19,10 +19,10 @@ CFLAGS = -O2
#for hp IncludeDir = /usr/contrib/X11R6/include
#for net-BSD IncludeDir = /usr/X11R6/include
-IncludeDir = .
+IncludeDir = ${X11BASE}/include
#for hp Ccompiler = c89
-Ccompiler = cc
+Ccompiler = ${CC}
all::
rm -f ./abs;\
@@ -34,10 +34,10 @@ all::
$(MAKE) TOPCFLAGS=$(CFLAGS) IncludeDir=$(IncludeDir) Ccompiler=$(Ccompiler) DEFINE=$(DEFINE) all); \
fi \
done
- cc -o abs ./Plot/*.o ./ABV/*.o \
+ ${CC} -o abs ./Plot/*.o ./ABV/*.o \
Fig/*.o Interface/*.o X11/xedit/*.o \
- ./Kernel/*.o ./X11/*.o ./Database/*.o ./Xpm/libxpm.a\
- $(LIBS) $(DEFINE)
+ ./Kernel/*.o ./X11/*.o ./Database/*.o \
+ ${LIBS} ${DEFINE}