aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2002-01-30 13:16:47 +0000
committerMystery Man <unknown@mandriva.org>2002-01-30 13:16:47 +0000
commit6c65f35cc84cd80125622e87c74d0c16a21c146b (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /Makefile
parent2fbdc23702f9f1b47fc5823b2740383e94c8e319 (diff)
downloadbootsplash-6c65f35cc84cd80125622e87c74d0c16a21c146b.tar
bootsplash-6c65f35cc84cd80125622e87c74d0c16a21c146b.tar.gz
bootsplash-6c65f35cc84cd80125622e87c74d0c16a21c146b.tar.bz2
bootsplash-6c65f35cc84cd80125622e87c74d0c16a21c146b.tar.xz
bootsplash-6c65f35cc84cd80125622e87c74d0c16a21c146b.zip
New repository initialized by cvs2svn.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile75
1 files changed, 0 insertions, 75 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index a9fd280..0000000
--- a/Makefile
+++ /dev/null
@@ -1,75 +0,0 @@
-#---------------------------------------------------------------
-# Project : Linux-Mandrake
-# Module : rpmbuildupdate
-# File : Makefile
-# Version : $Id$
-# Author : Guillaume Rousse
-# Created On : Sun Oct 1 19:26:37 2000
-#---------------------------------------------------------------
-
-BINFILES=rpmbuildupdate
-OTHERFILES=Makefile rpmbuildupdate.spec rpmbuildupdate.bash-completion ChangeLog.rpmbuildupdate
-FILES=$(BINFILES) $(OTHERFILES)
-
-PACKAGE=rpmbuildupdate
-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 -- '-.' '__')
-
-all:
- @echo "nothing to be done for $(PACKAGE)-$(VERSION)-$(RELEASE)"
-
-install:
- mkdir -p $(RPM_BUILD_ROOT)/usr/bin
- install -m 755 $(BINFILES) $(RPM_BUILD_ROOT)/usr/bin
- mkdir -p $(RPM_BUILD_ROOT)/etc/bash_completion.d
- install -m 644 rpmbuildupdate.bash-completion $(RPM_BUILD_ROOT)/etc/bash_completion.d/rpmbuildupdate
-
-clean: cleandist
- rm -f *~
-
-# 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
-# End:
-#
-# Makefile ends here