Update of /cvsroot/pure-data/externals/grill/flext/buildsys In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27306/buildsys
Modified Files: bmake-sub.mak bmake.mak gnumake-sub.mak gnumake.mak nmake-sub.mak nmake.mak Log Message: Fixes for Mac fixed autoconf files updates for batch mode some more SIMD optimized functions
Index: bmake.mak =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/bmake.mak,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** bmake.mak 5 Jan 2005 05:04:08 -0000 1.4 --- bmake.mak 27 Jan 2005 04:57:25 -0000 1.5 *************** *** 13,20 **** !endif
! !if "$(PKGINFO)" != "" !include $(PKGINFO) !endif
############################################### # check variables --- 13,28 ---- !endif
! !if "$(PKGINFO)" != "" && "$(PKGINFO)" != "1" !include $(PKGINFO) !endif
+ !ifndef NAME + !error NAME variable must be defined (name of target) + !endif + + !ifndef SRCS + !error SRCS variable must be defined (list of source files) + !endif + ############################################### # check variables
Index: nmake-sub.mak =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/nmake-sub.mak,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** nmake-sub.mak 5 Jan 2005 05:04:08 -0000 1.4 --- nmake-sub.mak 27 Jan 2005 04:57:25 -0000 1.5 *************** *** 6,10 **** --- 6,12 ----
# package info + !if "$(PKGINFO)" != "" !include $(PKGINFO) + !endif
# special package settings
Index: gnumake-sub.mak =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/gnumake-sub.mak,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gnumake-sub.mak 5 Jan 2005 05:04:08 -0000 1.4 --- gnumake-sub.mak 27 Jan 2005 04:57:25 -0000 1.5 *************** *** 6,10 ****
# package info ! include $(PKGINFO)
# special settings --- 6,12 ----
# package info ! ifneq ($(PKGINFO),) ! include $(PKGINFO) ! endif
# special settings
Index: gnumake.mak =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/gnumake.mak,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** gnumake.mak 13 Jan 2005 04:59:07 -0000 1.7 --- gnumake.mak 27 Jan 2005 04:57:25 -0000 1.8 *************** *** 17,20 **** --- 17,28 ---- endif
+ ifndef NAME + $(error "NAME variable must be defined (name of target)") + endif + + ifndef SRCS + $(error "SRCS variable must be defined (list of source files)") + endif + ############################################### # check variables
Index: nmake.mak =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/nmake.mak,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** nmake.mak 8 Jan 2005 04:58:29 -0000 1.5 --- nmake.mak 27 Jan 2005 04:57:25 -0000 1.6 *************** *** 17,20 **** --- 17,28 ---- !endif
+ !ifndef NAME + !error NAME variable must be defined (name of target) + !endif + + !ifndef SRCS + !error SRCS variable must be defined (list of source files) + !endif + ############################################### # check variables
Index: bmake-sub.mak =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/bmake-sub.mak,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** bmake-sub.mak 5 Jan 2005 05:04:08 -0000 1.4 --- bmake-sub.mak 27 Jan 2005 04:57:25 -0000 1.5 *************** *** 6,10 **** --- 6,12 ----
# package info + !if "$(PKGINFO)" != "" && "$(PKGINFO)" != "1" !include $(PKGINFO) + !endif
# special package settings