From 3d7e9092a436b707f2160fb869ab68e2a222bc4e Mon Sep 17 00:00:00 2001 From: rsc Date: Tue, 14 Oct 2003 02:35:00 +0000 Subject: Single-threaded plumber that can run "start" rules. Thanks to Caerwyn Jones. --- src/cmd/plumb/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/cmd/plumb/Makefile (limited to 'src/cmd/plumb/Makefile') diff --git a/src/cmd/plumb/Makefile b/src/cmd/plumb/Makefile new file mode 100644 index 00000000..df3c8bed --- /dev/null +++ b/src/cmd/plumb/Makefile @@ -0,0 +1,16 @@ + +CFLAGS=-I../../../include +LDLIBS=-L../../../lib -lplumb -lbio -lregexp9 -lfmt -l9 -lutf +all: plumb plumber + +plumb: plumb.o + cc -o $@ plumb.o $(LDLIBS) + +plumber: match.o rules.o plumber.o + cc -o $@ match.o rules.o plumber.o $(LDLIBS) + +clean: + rm -f *.o + +install: plumb plumber + cp plumb plumber ../../../bin -- cgit v1.2.3