aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..86a51b5a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,23 @@
+ROOT=/
+
+all:
+ (cd src; make CFLAGS="$(CFLAGS)")
+
+install:
+ mkdir -p $(ROOT)/etc
+ install -m644 -o root -g root inittab $(ROOT)/etc
+ install -m644 -o root -g root adjtime $(ROOT)/etc
+ cp -af rc.d sysconfig ppp $(ROOT)/etc
+ mkdir -p $(ROOT)/sbin
+ mv $(ROOT)/etc/sysconfig/network-scripts/ifup $(ROOT)/sbin
+ mv $(ROOT)/etc/sysconfig/network-scripts/ifdown $(ROOT)/sbin
+ (cd $(ROOT)/etc/sysconfig/network-scripts; \
+ ln -sf ../../../sbin/ifup . ; \
+ ln -sf ../../../sbin/ifdown . )
+ (cd src; make install ROOT=$(ROOT))
+ mkdir -p /var/run/netreport
+ chown root.root /var/run/netreport
+ chmod o=rwx,go=rx /var/run/netreport
+
+clean:
+ (cd src; make clean)