summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2019-03-22 13:21:05 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2019-03-22 13:21:05 -0400
commitefb349bcb837a6c6beb28e1ffd1055b7736ac20d (patch)
treeae511b2c45cc85cfa3b221a8b0261334c0906628 /test
parent6641bd0d3f20e1801373fc8b0b904a83d53d41f6 (diff)
downloadcups-efb349bcb837a6c6beb28e1ffd1055b7736ac20d.tar.gz
Add man page for and installation of ippeveprinter commands.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
index a1d007dc2..de9a541ca 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -133,6 +133,10 @@ install-exec:
$(INSTALL_BIN) ippfind $(BINDIR); \
fi
$(INSTALL_BIN) ipptool $(BINDIR)
+ $(INSTALL_DIR) -m 755 $(SERVERBIN)/ippeveprinter
+ for file in $(IPPEVECOMMANDS); do \
+ $(INSTALL_BIN) $$file $(SERVERBIN)/ippeveprinter; \
+ done
if test "x$(SYMROOT)" != "x"; then \
$(INSTALL_DIR) $(SYMROOT); \
cp ippeveprinter $(SYMROOT); \
@@ -170,6 +174,10 @@ uninstall:
$(RM) $(BINDIR)/$$file; \
done
-$(RMDIR) $(BINDIR)
+ for file in $(IPPEVECOMMANDS); do \
+ $(RM) $(SERVERBIN)/ippeveprinter/$$file; \
+ done
+ -$(RMDIR) $(SERVERBIN)/ippeveprinter
for file in $(DATAFILES); do \
$(RM) $(DATADIR)/ipptool/$$file; \
done