mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
22 lines
404 B
Plaintext
22 lines
404 B
Plaintext
--- makefile.orig Sun Nov 15 03:37:57 1998
|
|
+++ makefile Fri Jan 22 15:10:46 1999
|
|
@@ -6,15 +6,15 @@
|
|
#
|
|
# Installation prefix
|
|
#
|
|
-PREFIX=/usr/local
|
|
+PREFIX?=/usr/local
|
|
|
|
#
|
|
# C options
|
|
#
|
|
CFLAGS?= -Wall -ansi -pedantic -g
|
|
CFLAGS+= -DPREFIX=\"$(PREFIX)\"
|
|
-CFLAGS+= `gtk-config --cflags`
|
|
-CLIBS= `gtk-config --libs`
|
|
+CFLAGS+= `gtk10-config --cflags`
|
|
+CLIBS= `gtk10-config --libs`
|
|
|
|
all: gtkballs TAGS
|
|
|