summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile81
1 files changed, 81 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..eb5bd31
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,81 @@
+#---------------------------------------------------------------
+# Package : multiarch-utils
+# File : Makefile
+# Version : $Id$
+# Author : Gwenole Beauchesne
+# Created On : Wed Jan 12 18:42:04 CET 2005
+#---------------------------------------------------------------
+
+prefix = /usr
+bindir = $(prefix)/bin
+includedir = $(prefix)/include
+
+BINARIES = mkmultiarch multiarch-platform multiarch-dispatch
+INCLUDES = multiarch-dispatch.h
+FILES = $(BINARIES) $(INCLUDES)
+
+PACKAGE = multiarch-utils
+VERSION := $(shell rpm -q --qf %{VERSION} --specfile $(PACKAGE).spec)
+RELEASE := $(shell rpm -q --qf %{RELEASE} --specfile $(PACKAGE).spec)
+TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
+
+RPMOPT = --clean --rmspec
+
+all:
+ @echo "nothing to be done for $(PACKAGE)-$(VERSION)-$(RELEASE)"
+
+clean: cleandist
+ rm -f *~
+
+install:
+ -mkdir -p $(DESTDIR)$(bindir)
+ cp -p $(BINARIES) $(DESTDIR)$(bindir)
+ -mkdir -p $(DESTDIR)$(includedir)
+ cp -p $(INCLUDES) $(DESTDIR)$(includedir)
+
+# rules to build a test rpm
+
+localrpm: localdist buildrpm
+
+localdist: cleandist dir localcopy tar
+
+cleandist:
+ rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2
+
+dir:
+ mkdir $(PACKAGE)-$(VERSION)
+
+localcopy:
+ tar c $(FILES) | tar x -C $(PACKAGE)-$(VERSION)
+
+tar:
+ tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION)
+ bzip2 -9vf $(PACKAGE)-$(VERSION).tar
+ rm -rf $(PACKAGE)-$(VERSION)
+
+buildrpm:
+ rpm -ta $(PACKAGE)-$(VERSION).tar.bz2
+
+# rules to build a distributable rpm
+
+rpm: changelog cvstag dist buildrpm
+
+dist: cleandist dir export tar
+
+export:
+ cvs export -d $(PACKAGE)-$(VERSION) -r $(TAG) $(PACKAGE)
+
+cvstag:
+ cvs tag $(CVSTAGOPT) $(TAG)
+
+changelog: ../common/username
+ cvs2cl -U ../common/username -I ChangeLog
+ rm -f ChangeLog.bak
+ cvs commit -m "Generated by cvs2cl the `date '+%d_%b'`" ChangeLog
+
+# Local variables:
+# mode: makefile
+# tab-width: 8
+# End:
+#
+# Makefile ends here