summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7dd2fb8
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,31 @@
+
+all: patch compile
+
+patch:
+ sh patch.sh
+
+kernelconf: patch
+ sh conf.sh
+
+compile: kernelconf
+ make -C src
+
+install:
+ make -C src
+ make -C src install
+ make -C man install
+ sh magic.sh
+
+uninstall:
+ make -C src uninstall
+ make -C man uninstall
+
+mrproper:
+ rm -f *~
+ rm -f doc/*~
+ rm -f man/*~
+ rm -f patches/*~
+ make -C src mrproper
+
+dist:
+ sh mkdist.sh