freebsd-ports/sysutils/lsmlib/files/patch-makefile
Ying-Chieh Liao 319d643c9a add lsmlib
A lib that creates a libxml2 tree w/ info. token on a *NIX filesystem
2001-07-24 15:06:22 +00:00

15 lines
327 B
Text

--- makefile.orig Tue Jul 24 22:43:50 2001
+++ makefile Tue Jul 24 22:46:15 2001
@@ -4,10 +4,10 @@
# please see COPYING for further informations
#
-CC= gcc
+CFLAGS+= `${XML2_CONFIG} --cflags`
STD= _GNU_SOURCE
OBJS= main.o lsm.o
-LIBS= -lxml2
+LIBS= `${XML2_CONFIG} --libs`
.c.o:
$(CC) -c -Wall $(CFLAGS) -D$(STD) $<