From a2b5546602f0ddf57f3f4c06280deaac906e2c0e Mon Sep 17 00:00:00 2001 From: Kamil Rytarowski Date: Thu, 19 Apr 2012 00:23:06 +0000 Subject: - add simple Makefile --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..24e899f --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +PACKAGE = cpufreq +VERSION = 2.0 + +FILES = cpufreq \ + cpufreq.service \ + cpufreq.sysconfig + +clean: + rm -f *~ \#*\# + rm -fr $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.xz + +dir: + mkdir $(PACKAGE)-$(VERSION) + +localcopy: + tar c --exclude=.svn $(FILES) | tar x -C $(PACKAGE)-$(VERSION) + +tar: + tar cvYf $(PACKAGE)-$(VERSION).tar.xz $(PACKAGE)-$(VERSION) + rm -fr $(PACKAGE)-$(VERSION) + +dist: clean dir localcopy tar -- cgit v1.2.1