mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
29ca3dfb18
* Author rearranged the Makefile (and recompiled the linked objects contained within the DISTFILE) Update Makefile patch (patch-aa) to reflect the above changes Add 'clean' to ALL_TARGET so we do not link with the author's precompiled objects in the DISTFILE (FreeBSD's linker doesn't like Linux object files).
23 lines
713 B
Plaintext
23 lines
713 B
Plaintext
--- Makefile.orig Thu Apr 6 22:25:39 2000
|
|
+++ Makefile Sun Apr 16 08:50:18 2000
|
|
@@ -1,15 +1,15 @@
|
|
-INCLUDES =-I/usr/X11R6/include/X11 -I/usr/local/include -I/usr/include/X11R6/X11
|
|
-LIBINC =-L/usr/X11R6/lib -L/usr/include/lib
|
|
+INCLUDES =-I${X11BASE}/include
|
|
+LIBINC =-L${X11BASE}/lib
|
|
LIBS = -lX11 -lXpm -lXext -lm
|
|
|
|
TARGET = wmcalc
|
|
OBJECTS = wmcalc.o readln.o wmcalcswitch.o wmcalcfunc.o
|
|
|
|
.c.o:
|
|
- gcc -O2 -c -Wall ${INCLUDES} ${FLAGS} $< -o $*.o
|
|
+ gcc ${CFLAGS} -c ${INCLUDES} ${FLAGS} $< -o $*.o
|
|
|
|
${TARGET}: ${OBJECTS}
|
|
- gcc -O2 -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
|
|
+ gcc ${CFLAGS} -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
|
|
|
|
clean::
|
|
for i in ${OBJECTS}; do if [ -e $$i ] ; then rm $$i; fi; done
|