aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mk/Autoconf.mk3
-rw-r--r--mk/Compile.mk2
-rw-r--r--mk/Maintainer.mk19
3 files changed, 12 insertions, 12 deletions
diff --git a/mk/Autoconf.mk b/mk/Autoconf.mk
index 27eeb32..7608ea5 100644
--- a/mk/Autoconf.mk
+++ b/mk/Autoconf.mk
@@ -85,11 +85,12 @@ ac_lib = $(shell \
# check if some compiler flag works
# args: compiler flag
ac_cflag = $(shell \
- $(call ac_init,if $(CC) supports $(1));\
+ $(call ac_init,for $(CC) cflags);\
echo 'int main() {return 0;}' > __actest.c;\
$(call ac_b_cmd,$(CC) $(CFLAGS) $(1) $(LDFLAGS) -o \
__actest __actest.c);\
rm -f __actest __actest.c;\
+ if test "$${rc}" = "yes"; then rc="$(1)"; else rc="$(2)"; fi;\
$(call ac_fini))
# check for some binary
diff --git a/mk/Compile.mk b/mk/Compile.mk
index 4ab59f4..ae88f14 100644
--- a/mk/Compile.mk
+++ b/mk/Compile.mk
@@ -45,7 +45,7 @@ ifeq ($(verbose),no)
echo_msgfmt_po = echo " MSGFMT " $@
else
echo_compile_c = echo $(compile_c)
- echo_compile_c = echo $(compile_c_pic)
+ echo_compile_c_pic = echo $(compile_c_pic)
echo_compile_cc = echo $(compile_cc)
echo_link_app = echo $(link_app)
echo_link_so = echo $(link_so)
diff --git a/mk/Maintainer.mk b/mk/Maintainer.mk
index 23446ae..fedc5cc 100644
--- a/mk/Maintainer.mk
+++ b/mk/Maintainer.mk
@@ -12,17 +12,16 @@ sync:: distclean
chmod 444 $(srcdir)/INSTALL $(srcdir)/mk/*.mk
-repository = $(shell cat CVS/Repository)
+repository := $(shell basename $(PWD))
release-dir ?= $(HOME)/projects/Releases
-release-pub ?= goldbach@me.in-berlin.de:dl.bytesex.org/releases/$(repository)
-tarball = $(release-dir)/$(repository)-$(VERSION).tar.gz
+release-pub ?= bigendian.kraxel.org:/public/vhosts/www.kraxel.org/releases/$(repository)
+tarball = $(release-dir)/$(repository)-$(VERSION).tar
.PHONY: release
release:
- cvs tag $(RELTAG)
- cvs export -r $(RELTAG) -d "$(repository)-$(VERSION)" "$(repository)"
- find "$(repository)-$(VERSION)" -name .cvsignore -exec rm -fv "{}" ";"
- tar -c -z -f "$(tarball)" "$(repository)-$(VERSION)"
- rm -rf "$(repository)-$(VERSION)"
- scp $(tarball) $(release-pub)
-
+ git tag -m "release $(VERSION)" "$(VERSION)"
+ git push --tags
+ git archive --format=tar --prefix=$(repository)-$(VERSION)/ \
+ -o $(tarball) $(VERSION)
+ gzip $(tarball)
+ scp $(tarball).gz $(release-pub)