diff options
author | John Denker <jsd@av8n.com> | 2012-11-23 11:51:38 -0800 |
---|---|---|
committer | John Denker <jsd@av8n.com> | 2012-11-23 11:51:38 -0800 |
commit | 4134b154839c91f44bb39547af9297f4b6a353d3 (patch) | |
tree | f8b7bee0f7596f3db63a4f44cb8a0f2dc2dfd5e9 /tools/makefile | |
parent | 2db619bf6bb01efdc01ce9b3729575ae21abcf5f (diff) |
pipette ... for playing around with pipes and other i/o stuff
Diffstat (limited to 'tools/makefile')
-rw-r--r-- | tools/makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/makefile b/tools/makefile index 38d35ce..ec9c101 100644 --- a/tools/makefile +++ b/tools/makefile @@ -17,7 +17,7 @@ qmain = pido.c hi-q.c skrewt.c hi-test.c mail-scan.c \ qprogs = $(qmain:%.c=%) # sources for other main programs: -moremain = wripper.c bash-c.c ltgrey.c fixown.c +moremain = wripper.c bash-c.c ltgrey.c fixown.c pipette.c moreprogs = $(moremain:%.c=%) nonmain = libltgrey.c @@ -49,6 +49,9 @@ fixown2: fixown.o utils.o chmod o-rwx $@ ./fixown $@ +pipette: pipette.o utils.o + $(CC) $^ -o $@ + skrewt: skrewt.o utils.o sepofra.o $(CC) $^ -lboost_filesystem-mt -lboost_system -lspf2 -o $@ ./fixown $@ |