mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
0a92f1cd60
PR: 12443 Submitted by: maintainer
24 lines
799 B
Plaintext
24 lines
799 B
Plaintext
--- Makefile.orig Thu May 27 00:17:20 1999
|
|
+++ Makefile Tue Jun 29 10:07:22 1999
|
|
@@ -1,6 +1,6 @@
|
|
|
|
|
|
-INCLUDES =-I/usr/X11R6/include/X11 -I/usr/local/include -I/usr/include/X11R6/X11
|
|
+INCLUDES =-I/usr/X11R6/include/X11 -I/usr/X11R6/include -I/usr/local/include -I/usr/include/X11R6/X11
|
|
LIBINC =-L/usr/X11R6/lib -L/usr/include/lib
|
|
LIBS = -lm -lX11 -lXpm -lXext
|
|
|
|
@@ -31,10 +31,10 @@
|
|
###################################################################
|
|
|
|
${OBJECTS}: ${SOURCE}
|
|
- gcc -g -c -Wall ${INCLUDES} ${FLAGS} $< -o $*.o
|
|
+ ${CC} ${CFLAGS} -c -Wall ${INCLUDES} ${FLAGS} $< -o $*.o
|
|
|
|
${TARGET}: ${OBJECTS}
|
|
- gcc -g -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
|
|
+ ${CC} ${CFLAGS} -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
|
|
|
|
clean::
|
|
for i in ${OBJECTS}; do if [ -e $$i ] ; then rm $$i; fi; done
|