diff options
author | Bart De Schuymer <bdschuym@pandora.be> | 2002-07-10 20:09:56 +0000 |
---|---|---|
committer | Bart De Schuymer <bdschuym@pandora.be> | 2002-07-10 20:09:56 +0000 |
commit | 3289054de592a5298b26f43301e443d2e00989e8 (patch) | |
tree | a85f3a4abb1d4775313263a87c331e5af4e802dc | |
parent | fc3dd67374c37ed94243b6bdcbdb9295c93b6732 (diff) | |
download | ebtables-3289054de592a5298b26f43301e443d2e00989e8.tar.gz ebtables-3289054de592a5298b26f43301e443d2e00989e8.tar.bz2 ebtables-3289054de592a5298b26f43301e443d2e00989e8.zip |
copy to /sbin/ebtables
-rw-r--r-- | INSTALL | 3 | ||||
-rw-r--r-- | Makefile | 7 |
2 files changed, 7 insertions, 3 deletions
@@ -22,6 +22,7 @@ WHAT GETS INSTALLED? option on the command line. The Makefile will append /man8/ebtables.8. - ethertypes is placed in /etc/ -- the userspace program ebtables is compiled. +- the userspace program ebtables is compiled and the executable is copied + to in /sbin/ebtables. That's all @@ -2,7 +2,7 @@ KERNEL_DIR?=/usr/src/linux PROGNAME:=ebtables -PROGVERSION:="2.0pre9 (July 2002)" +PROGVERSION:="2.0pre10 (July 2002)" MANDIR?=/usr/local/man CFLAGS:=-Wall -Wunused @@ -51,9 +51,12 @@ $(MANDIR)/man8/ebtables.8: ebtables.8 /etc/ethertypes: ethertypes mkdir -p $(@D) install -m 0644 -o root -g root $< $@ +.PHONY: exec +exec: ebtables + install -m 0755 -o root -g root $< /sbin/ebtables install: $(MANDIR)/man8/ebtables.8 $(KERNEL_INCLUDES) \ - ebtables /etc/ethertypes + ebtables /etc/ethertypes exec clean: rm -f ebtables |