diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d8779b4 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +build: + +install: + install -o root -g root -m 755 -d $(DESTDIR)/etc/cron.d + install -o root -g root -m 755 -d $(DESTDIR)/etc/default + install -o root -g root -m 755 -d $(DESTDIR)/usr/sbin + install -o root -g root -m 644 etc/cron.d/iptables-rrdtool $(DESTDIR)/etc/cron.d/ + install -o root -g root -m 644 etc/default/iptables-rrdtool $(DESTDIR)/etc/default/ + install -o root -g root -m 644 sbin/iptables-rrdtool $(DESTDIR)/usr/sbin/ +clean: |