Preparing 0.0.4 release
This commit is contained in:
parent
98116b8d91
commit
09e2b9b0a1
8
CHANGES
8
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 <khorben@defora.org>
|
||||
|
||||
27/01/2006 - 0.0.3
|
||||
------------------
|
||||
* separate file for Makefile output
|
||||
|
6
Makefile
6
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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user