Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1178 → Rev 1179

/rebootd/trunk/Makefile
9,17 → 9,7
VER_MAJOR= 1
VER_MINOR= 0
VER_REVISION!= svnversion .
RELEASE_NAME= $(PROJ)-$(VER_MAJOR).$(VER_MINOR).$(VER_REVISION)
 
SAMPLES= $(SRCDIR)/rebootd.conf
PKGDIR= $(OUTDIR)/package
FREEBSDDIR= $(OUTDIR)/freebsd-port
 
.if exists($(OUTDIR)/last_revision.txt)
LAST_REVISION!= cat $(OUTDIR)/last_revision.txt
LAST_TAR= $(PROJ)-$(VER_MAJOR).$(VER_MINOR).$(LAST_REVISION).tar.gz
.endif
 
$(PROG): $(SRCS)
cc -pedantic-errors -Wall -o $(PROG) \
-DVER_MAJOR=\"$(VER_MAJOR)\" -DVER_MINOR=\"$(VER_MINOR)\" -DVER_REVISION=\"$(VER_REVISION)\" \
41,18 → 31,10
 
release:
./bin/make_release.sh $(VER_MAJOR) $(VER_MINOR)
./bin/make_freebsd_port.sh
 
freebsd-port:
rm -rf $(FREEBSDDIR)
mkdir $(FREEBSDDIR)
cp -r ports/freebsd $(FREEBSDDIR)/$(PROJ)
sed -e 's/%VER_MAJOR%/$(VER_MAJOR)/' -e 's/%VER_MINOR%/$(VER_MINOR)/' \
-e 's/%VER_REVISION%/$(LAST_REVISION)/' ports/freebsd/Makefile \
> $(FREEBSDDIR)/$(PROJ)/Makefile
( cd $(OUTDIR); md5 $(LAST_TAR) ) > $(FREEBSDDIR)/$(PROJ)/distinfo
echo "SIZE ($(LAST_TAR)) =" `stat -f '%z' $(OUTDIR)/$(LAST_TAR)` >> $(FREEBSDDIR)/$(PROJ)/distinfo
tar cf - --exclude '*/.svn' -C $(FREEBSDDIR) $(PROJ) | gzip > $(OUTDIR)/$(PROJ)-freebsd-port.tar.gz
rm -rf $(FREEBSDDIR)
./bin/make_freebsd_port.sh
 
clean:
rm -rf $(OUTDIR)/*