Preparing 0.0.4 release

This commit is contained in:
Pierre Pronchery 2006-07-16 01:06:04 +00:00
parent 98116b8d91
commit 09e2b9b0a1
3 changed files with 13 additions and 5 deletions

View File

@ -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 <khorben@defora.org>
27/01/2006 - 0.0.3
------------------
* separate file for Makefile output

View File

@ -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)

View File

@ -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