From b95da1372d3d0508f9f3e41211e483429b21dfe6 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 12 Mar 2008 16:21:05 +0200 Subject: [PATCH] [BUILD] Added 'install-bin' make target --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index da36977bf..43bc8a4c5 100644 --- a/Makefile +++ b/Makefile @@ -452,10 +452,12 @@ install-man: install -d $(DESTDIR)/$(MANDIR)/man1 install -m 644 doc/haproxy.1 $(DESTDIR)/$(MANDIR)/man1 -install: install-man all +install-bin: all install -d $(DESTDIR)/$(SBINDIR) install haproxy $(DESTDIR)/$(SBINDIR) +install: install-man install-bin + clean: rm -f *.[oas] src/*.[oas] core haproxy test for dir in . src include/* doc; do rm -f $$dir/*~ $$dir/*.rej;done