From 36c0bad1fa4d61860a9cb4688759a49fa22cde67 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Wed, 28 Sep 2005 12:52:36 +0000 Subject: Initial revision --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.1