summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-07-24 16:53:54 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-07-24 16:53:54 +0000
commit0694b88d08b2b55576f1854e9ce78246fbb51a6a (patch)
tree36889d3a5c5be95a46dea8a51b8fa53d398e9b2e /Makefile
parentd7cea7bcbafb212013a3638ee3e76d63e9ef18cc (diff)
downloadperl_checker-0694b88d08b2b55576f1854e9ce78246fbb51a6a.tar
perl_checker-0694b88d08b2b55576f1854e9ce78246fbb51a6a.tar.gz
perl_checker-0694b88d08b2b55576f1854e9ce78246fbb51a6a.tar.bz2
perl_checker-0694b88d08b2b55576f1854e9ce78246fbb51a6a.tar.xz
perl_checker-0694b88d08b2b55576f1854e9ce78246fbb51a6a.zip
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..fec205a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,35 @@
+NAME = perl-MDK-Common
+TAR = $(NAME).tar.bz2
+
+PREFIX = /usr
+BINDIR = $(PREFIX)/bin
+INSTALLSITEARCH = $(shell eval "`perl -V:installsitelib`"; echo $$installsitelib | sed 's,/usr,$(PREFIX),')
+
+test:
+ ./perl_checker MDK/Common/*.pm
+
+clean:
+ find -name "*~" | xargs rm -rf
+
+install: clean test
+ install -d $(BINDIR) $(INSTALLSITEARCH)
+ install perl_checker $(BINDIR)
+ cp -r MDK $(INSTALLSITEARCH)
+
+rpm: update tar build commit
+
+
+update:
+# cvs update
+
+commit:
+ cvs commit
+
+tar: clean
+ cd .. ; tar cf - $(NAME) | bzip2 -9 >$(TAR)
+
+build:
+ cp -f ../$(TAR) $(RPM)/SOURCES
+ perl -MMDK::Common -pe 's/THEVERSION/$$MDK::Common::VERSION/' $(NAME).spec > $(RPM)/SPECS/$(NAME).spec
+ -rpm -ba $(NAME).spec
+ rm -f ../$(TAR)