diff options
author | rsc <devnull@localhost> | 2003-10-14 02:35:00 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-10-14 02:35:00 +0000 |
commit | 3d7e9092a436b707f2160fb869ab68e2a222bc4e (patch) | |
tree | 1ef451afc85f7ecba3c8f97ad5222b7ccc515454 /src/cmd | |
parent | 169aba14a4766b3d15695ef27681d0f1d04f8521 (diff) | |
download | plan9port-3d7e9092a436b707f2160fb869ab68e2a222bc4e.tar.gz plan9port-3d7e9092a436b707f2160fb869ab68e2a222bc4e.tar.bz2 plan9port-3d7e9092a436b707f2160fb869ab68e2a222bc4e.zip |
Single-threaded plumber that can run "start" rules.
Thanks to Caerwyn Jones.
Diffstat (limited to 'src/cmd')
-rw-r--r-- | src/cmd/plumb/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
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 |