aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-08-06 13:10:43 -0700
committerJunio C Hamano <junkio@cox.net>2005-08-06 17:23:52 -0700
commit7a59013290bb26b80c997e5698757a735f1a92e0 (patch)
tree9658c6be6996dba62cc6c10d2c85b3bcc97621d9 /Makefile
parentd3af621b147bb90a31fdc3b55e07853f45deb658 (diff)
downloadgit-7a59013290bb26b80c997e5698757a735f1a92e0.tar.gz
GIT 0.99.4 (release candidate)
This is my first attempt to adjust Debian and RPM to pass prefix, to prepare the 0.99.4 release. It updates debian/rules and git-core.spec.in to properly pass prefix when building binary packages. It also updates debian/changelog to make the resulting binary package name 0.99.4; this is not needed on the RPM side (it takes the version number from the main Makefile). Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 10 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 072d4267b6..ecc2277540 100644
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,7 @@
# DEFINES += -DUSE_STDEV
-GIT_VERSION=0.99.3
+GIT_VERSION=0.99.4
COPTS?=-g -O2
CFLAGS+=$(COPTS) -Wall $(DEFINES)
@@ -156,7 +156,9 @@ all: $(PROG)
all:
$(MAKE) -C templates
-.PRECIOUS: %.o
+.SECONDARY: %.o
+.c.o:
+ $(CC) $(CFLAGS) -o $*.o -c $*.c
git-%: %.o $(LIB_FILE)
$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(LIBS)
@@ -231,17 +233,17 @@ dist: git-core.spec git-tar-tree
rpm: dist
$(RPMBUILD) -ta git-core-$(GIT_VERSION).tar.gz
-
-backup: clean
- cd .. ; tar czvf dircache.tar.gz dir-cache
-
-
+deb: dist
+ rm -rf git-core-$(GIT_VERSION)
+ tar zxf git-core-$(GIT_VERSION).tar.gz
+ cd git-core-$(GIT_VERSION) && fakeroot debian/rules binary
### Cleaning rules
clean:
rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE)
- rm -f git-core-*.tar.gz git-core.spec
+ rm -f git-core-*.tar.gz git-core.spec git-core-$(GIT_VERSION)-*.deb
+ rm -rf git-core-$(GIT_VERSION)
$(MAKE) -C tools/ clean
$(MAKE) -C Documentation/ clean
$(MAKE) -C templates/ clean