mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +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)
31 lines
756 B
Plaintext
31 lines
756 B
Plaintext
--- Makefile.orig Mon Mar 29 07:41:40 1999
|
|
+++ Makefile Sat Jun 26 18:00:10 1999
|
|
@@ -1,14 +1,17 @@
|
|
-LIBDIR = -L/usr/X11R6/lib
|
|
+CC ?= gcc
|
|
+CFLAGS += -c -Wall
|
|
+INCLUDES = -I${LOCALBASE}/include
|
|
+LIBDIR = -L${LOCALBASE}/lib
|
|
LIBS = -lXpm -lXext -lX11
|
|
OBJS = wmtictactoe.o ../wmgeneral/wmgeneral.o
|
|
|
|
.c.o:
|
|
- cc -c -g -O2 -Wall $< -o $*.o
|
|
+ ${CC} ${CFLAGS} ${INCLUDES} $< -o $*.o
|
|
|
|
all: wmtictactoe
|
|
|
|
wmtictactoe: $(OBJS)
|
|
- cc -o wmtictactoe $^ $(LIBDIR) $(LIBS)
|
|
+ ${CC} -o wmtictactoe $^ ${LIBDIR} ${LIBS}
|
|
|
|
clean:
|
|
for i in $(OBJS) ; do \
|
|
@@ -17,5 +20,4 @@
|
|
rm wmtictactoe
|
|
|
|
install:
|
|
- /usr/bin/install -c -o 0 -g 0 -s -m 755 wmtictactoe /usr/local/bin/wmtictactoe
|
|
-
|
|
+ @/usr/bin/install -c -o 0 -g 0 -s -m 755 wmtictactoe ${PREFIX}/bin/wmtictactoe
|