[q-lang-cvs] q/regex Makefile.mingw,1.1.1.1,1.2
Brought to you by:
agraef
From: <ag...@us...> - 2004-01-02 04:30:56
|
Update of /cvsroot/q-lang/q/regex In directory sc8-pr-cvs1:/tmp/cvs-serv23233/regex Modified Files: Makefile.mingw Log Message: Windows port Index: Makefile.mingw =================================================================== RCS file: /cvsroot/q-lang/q/regex/Makefile.mingw,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.mingw 15 Dec 2003 10:18:38 -0000 1.1.1.1 --- Makefile.mingw 2 Jan 2004 04:30:52 -0000 1.2 *************** *** 47,52 **** SHELL = /bin/sh - subdirs = doc test - default all:: libregex.a .PHONY: default all --- 47,50 ---- *************** *** 66,104 **** extraclean:: distclean rm -f patch* *~* *\#* *.orig *.rej *.bak core a.out - - configure: configure.in - autoconf - - config.status: configure - sh configure --no-create - - Makefile: Makefile.in config.status - sh config.status - - makeargs = $(MFLAGS) CPPFLAGS='$(CPPFLAGS)' CFLAGS='$(CFLAGS)' CC='$(CC)' \ - DEFS='$(DEFS)' LDFLAGS='$(LDFLAGS)' LOADLIBES='$(LOADLIBES)' - - default all install \ - mostlyclean clean distclean extraclean realclean \ - TAGS check:: - for d in $(subdirs); do (cd $$d; $(MAKE) $(makeargs) $@); done - .PHONY: install mostlyclean clean distclean extraclean realclean TAGS check - - # Prevent GNU make 3 from overflowing arg limit on system V. - .NOEXPORT: - - distfiles = AUTHORS ChangeLog COPYING INSTALL NEWS README \ - *.in configure regex.c regex.h - distdir = regex-$(version) - distargs = version=$(version) distdir=../$(distdir)/$$d - dist: TAGS configure - @echo "Version numbers in: Makefile.in, ChangeLog, NEWS," - @echo " regex.c, regex.h," - @echo " and doc/xregex.texi (if modified)." - rm -rf $(distdir) - mkdir $(distdir) - ln $(distfiles) $(distdir) - for d in $(subdirs); do (cd $$d; $(MAKE) $(distargs) dist); done - tar czhf $(distdir).tar.Z $(distdir) - rm -rf $(distdir) - .PHONY: dist --- 64,65 ---- |