]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
don't strip shell scripts
authorosdl.net!shemminger <osdl.net!shemminger>
Wed, 9 Feb 2005 22:05:41 +0000 (22:05 +0000)
committerosdl.net!shemminger <osdl.net!shemminger>
Wed, 9 Feb 2005 22:05:41 +0000 (22:05 +0000)
(Logical change 1.141)

ip/Makefile

index a1326d1265d0bfa838c1df1956aa8464288d8901..bcc419beda84579ecdea9c8541ce3113cd15eded 100644 (file)
@@ -6,9 +6,10 @@ IPOBJ=ip.o ipaddress.o iproute.o iprule.o \
 RTMONOBJ=rtmon.o
 
 ALLOBJ=$(IPOBJ) $(RTMONOBJ)
-TARGETS=ip rtmon ifcfg rtpr
+SCRIPTS=ifcfg rtpr routel routef
+TARGETS=ip rtmon
 
-all: $(TARGETS)
+all: $(TARGETS) $(SCRIPTS)
 
 ip: $(IPOBJ) $(LIBNETLINK) $(LIBUTIL)
 
@@ -16,7 +17,7 @@ rtmon: $(RTMONOBJ) $(LIBNETLINK)
 
 install: all
        install -m 0755 -s $(TARGETS) $(DESTDIR)$(SBINDIR)
-       install -m 0755 routel routef $(DESTDIR)$(SBINDIR)
+       install -m 0755 $(SCRIPTS) $(DESTDIR)$(SBINDIR)
 
 clean:
        rm -f $(ALLOBJ) $(TARGETS)