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)
33 lines
830 B
Text
33 lines
830 B
Text
--- Makefile.orig Tue Oct 22 04:18:27 1996
|
|
+++ Makefile Fri Mar 31 05:23:20 2000
|
|
@@ -6,17 +6,18 @@
|
|
# #
|
|
################################
|
|
|
|
-INCLUDES = -I/usr/X11/include
|
|
+INCLUDES = -I${LOCALBASE}/include
|
|
|
|
# Remove '-DIPC_OK' if you have problems with 'shared-memory' (IPC routines)
|
|
OPC = -DIPC_OK
|
|
|
|
-LIBRARIES = -lX11 -L/usr/X11/lib
|
|
+LIBRARIES = -lX11 -L${LOCALBASE}/lib
|
|
|
|
CFILES = xtruco.c bitmap.c cursor.c display.c event.c gc.c pixmap.c\
|
|
topwind.c window.c color.c button.c font.c read.c
|
|
|
|
-CC = gcc -O2 -g -Dlinux -DX11R6 $(INCLUDES) $(OPC)
|
|
+CC ?= gcc
|
|
+CFLAGS += -DX11R6 $(INCLUDES) $(OPC)
|
|
|
|
PROG=xtruco
|
|
|
|
@@ -25,7 +26,7 @@
|
|
OBJS=$(CFILES:.c=.o)
|
|
|
|
all: $(OBJS)
|
|
- $(CC) -o $(PROG) $(LIBRARIES) $(OBJS)
|
|
+ $(CC) $(CFLAGS) -o $(PROG) $(LIBRARIES) $(OBJS)
|
|
# strip ${PROG}
|
|
|
|
clean:
|