mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
16 lines
467 B
Plaintext
16 lines
467 B
Plaintext
--- Makefile.orig Tue Dec 23 16:18:59 2003
|
|
+++ Makefile Fri May 21 16:40:21 2004
|
|
@@ -1,10 +1,9 @@
|
|
-CC = gcc
|
|
-CFLAGS = -O2 -ansi -Wall -L/usr/X11R6/lib -I/usr/X11R6/include
|
|
+CFLAGS += -L${LOCALBASE}/lib -I${LOCALBASE}/include
|
|
|
|
OBJS = main.o graphics.o sys.o osdep/freebsd.o
|
|
|
|
all:: ${OBJS}
|
|
- ${CC} -o xacpim *.o -lX11 -L/usr/X11R6/lib -I/usr/X11R6/include
|
|
+ ${CC} -o xacpim *.o -lX11 -L${LOCALBASE}/lib -I${LOCALBASE}/include
|
|
|
|
install:: xacpim
|
|
strip xacpim
|