summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJake Mannens <jakem_5@hotmail.com>2016-04-05 13:52:34 +1000
committerJake Mannens <jakem_5@hotmail.com>2016-04-05 13:52:34 +1000
commit65ce53bab412623b6b7b39f2fba3536619175537 (patch)
treeb038ee9203db4e922289e3b683c83e044edb1c1e /Makefile
new file: Makefile
new file: build.sh new file: man/flood.1.pod new file: package/DEBIAN/control new file: package/usr/share/doc/flood/README.gz new file: package/usr/share/doc/flood/changelog.gz new file: package/usr/share/doc/flood/copyright new file: package/usr/share/man/man1/flood.1.gz new file: source/Makefile new file: source/flood.c new file: version
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..8505ce6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+all: package
+
+package: flood
+ ./build.sh
+
+flood:
+ make -C source
+
+clean:
+ make -C source clean
+ rm -rf build
+ rm -rf *.deb
+
+install: package
+ dpkg -i *.deb