From: Christian Wiese Date: Wed, 12 Mar 2008 14:21:05 +0000 (+0200) Subject: [BUILD] Added 'install-bin' make target X-Git-Tag: v1.3.15~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4cf5d575b51cbd913dc3ca4c1bbf3387443f9412;p=thirdparty%2Fhaproxy.git [BUILD] Added 'install-bin' make target --- diff --git a/Makefile b/Makefile index a9a4d41394..70aab2e4b1 100644 --- a/Makefile +++ b/Makefile @@ -479,10 +479,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