summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2f30e1c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+PACKAGE = mandi
+VERSION := $(shell rpm -q --qf '%{VERSION}\n' --specfile $(PACKAGE).spec | head -1)
+RELEASE := $(shell rpm -q --qf '%{RELEASE}\n' --specfile $(PACKAGE).spec | head -1)
+
+all:
+ (cd src; make)
+
+clean:
+ find -maxdepth 1 -type d -name 'mandi-*' -exec rm -r {} \;
+ find -name '*~' -exec rm {} \;
+ make -C src clean
+
+dist: clean
+ mkdir ../$(PACKAGE)-$(VERSION)
+ tar c . | tar x -C ../$(PACKAGE)-$(VERSION)
+ tar cvjf ../mandi-$(VERSION).tar.bz2 ../mandi-$(VERSION)
+ rm -rf ../mandi-$(VERSION)
+ rpm -ts ../mandi-$(VERSION).tar.bz2