From 09e2b9b0a1882999b2736542f08d76d37600f6a8 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Sun, 16 Jul 2006 01:06:04 +0000 Subject: [PATCH] Preparing 0.0.4 release --- CHANGES | 8 ++++++++ Makefile | 6 +++--- project.conf | 4 ++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 413d67f..6d15c41 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,11 @@ +16/07/2006 - 0.0.4 +------------------ +* added .PHONY pseudo-rule +* filters out some essential libraries as required on the platform +* supports basic config.{h,sh} automatic generation +* added C++ support + -- khorben + 27/01/2006 - 0.0.3 ------------------ * separate file for Makefile output diff --git a/Makefile b/Makefile index 7ce840d..64d5fc9 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PACKAGE = configure -VERSION = 0.0.3 +VERSION = 0.0.4 SUBDIRS = src LN = ln -sf TAR = tar -czvf @@ -17,13 +17,12 @@ distclean: @for i in $(SUBDIRS); do (cd $$i && $(MAKE) distclean) || exit; done dist: - $(RM) $(PACKAGE)-$(VERSION) + $(RM) -r $(PACKAGE)-$(VERSION) $(LN) . $(PACKAGE)-$(VERSION) @$(TAR) $(PACKAGE)-$(VERSION).tar.gz \ $(PACKAGE)-$(VERSION)/src/configure.c \ $(PACKAGE)-$(VERSION)/src/makefile.c \ $(PACKAGE)-$(VERSION)/src/settings.c \ - $(PACKAGE)-$(VERSION)/src/makedepend.c \ $(PACKAGE)-$(VERSION)/src/Makefile \ $(PACKAGE)-$(VERSION)/src/configure.h \ $(PACKAGE)-$(VERSION)/src/makefile.h \ @@ -34,6 +33,7 @@ dist: $(PACKAGE)-$(VERSION)/CHANGES \ $(PACKAGE)-$(VERSION)/configure.txt \ $(PACKAGE)-$(VERSION)/INSTALL \ + $(PACKAGE)-$(VERSION)/Makefile \ $(PACKAGE)-$(VERSION)/README \ $(PACKAGE)-$(VERSION)/project.conf $(RM) $(PACKAGE)-$(VERSION) diff --git a/project.conf b/project.conf index da8149e..3111a82 100644 --- a/project.conf +++ b/project.conf @@ -1,5 +1,5 @@ package=configure -version=0.0.3 +version=0.0.4 subdirs=src -dist=AUTHORS,BUGS,CHANGES,configure.txt,INSTALL,README +dist=AUTHORS,BUGS,CHANGES,configure.txt,INSTALL,Makefile,README