forked from Lainports/freebsd-ports
29 lines
788 B
Text
29 lines
788 B
Text
--- Makefile.orig Wed Dec 27 03:52:16 2000
|
|
+++ Makefile Mon Feb 16 16:06:00 2004
|
|
@@ -1,8 +1,8 @@
|
|
CC=cc
|
|
LDOPTIONS=-shared
|
|
LD=ld
|
|
-CCFLAGS=
|
|
-LIBS=-lm -ldl -lpthread
|
|
+CCFLAGS=$(CFLAGS) $(PTHREAD_CFLAGS)
|
|
+LIBS=-lm $(PTHREAD_LIBS)
|
|
OBJS=builder.o conftree.o dynlolib.o execute.o\
|
|
expression.o filesys.o getopt.o lexer.o match.o\
|
|
memory.o myalloc.o options.o reader.o report.o sym.o\
|
|
@@ -20,7 +20,6 @@
|
|
.PHONY: headers clean install all
|
|
|
|
all: headers scriba cftc cgi.so hash.so re.so basicc.a
|
|
- sh install.sh
|
|
|
|
clean :
|
|
rm *.so *.o *.h ./scriba
|
|
@@ -39,7 +38,6 @@
|
|
|
|
scriba : $(OBJS) $(COBJS) scribacmd.o
|
|
$(CC) -o scriba $(LIBS) $(OBJS) $(COBJS) scribacmd.o
|
|
- scriba -v
|
|
|
|
cftc : cftc.o confpile.o conftree.o lsp.o
|
|
$(CC) -o cftc $(LIBS) cftc.o confpile.o conftree.o lsp.o
|