diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 21:13:09 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2009-04-01 21:13:09 +0000 |
commit | 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 (patch) | |
tree | 5c67818b38a5cc2f9caa5ca7f8640ca356adf02b /externals/grill/flext/buildsys/win | |
parent | bb4c7f6a245394d09dac9adfb2efb093d3d98452 (diff) |
cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/
svn path=/trunk/; revision=10951
Diffstat (limited to 'externals/grill/flext/buildsys/win')
45 files changed, 0 insertions, 1035 deletions
diff --git a/externals/grill/flext/buildsys/win/bmake-bcc-ext.inc b/externals/grill/flext/buildsys/win/bmake-bcc-ext.inc deleted file mode 100644 index ff26dc12..00000000 --- a/externals/grill/flext/buildsys/win/bmake-bcc-ext.inc +++ /dev/null @@ -1,53 +0,0 @@ -# build class specific settings - -INCPATH=$(INCPATH) -I$(FLEXTINC) -LIBPATH=$(LIBPATH) -L$(FLEXTLIB) -LIBS=$(LIBS) $(FLEXTNAME).lib - -############################################## - -# default target -_build_: $(TARGET) - -$(OUTPATH): - if not exist $@ mkdir $@ > nul - -$(TARGETPATH): $(OUTPATH) - if not exist $@ mkdir $@ > nul - -SETUPFUNCTION=$(NAME)_setup - -$(TARGETPATH)\$(NAME).def: $(TARGETPATH) - @echo EXPORTS $(SETUPFUNCTION) = _$(SETUPFUNCTION) > $@ -# this next line fixes a strange problem with implib - lacking underscore?! - @echo IMPORTS _rtext_retext=PD.rtext_retext >> $@ - -$(TARGET) :: $(TARGETPATH)\$(NAME).def - -{$(SRCDIR)}.cpp{}.obj: - bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(TARGETPATH) $< - -{$(SRCDIR)}.c{}.obj: - bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(TARGETPATH) $< - -$(TARGET) :: $(TARGETPATH) - -$(TARGET) :: $(OBJS) - @cd $(TARGETPATH) - ilink32 $(LDFLAGS) $(LIBPATH) -L. $(OBJS) ,$(<F),,$(LIBS),$(NAME).def - @cd ..\.. - -############################################## -# remove build - -_clean_: - -del /q $(TARGETPATH)\*.* > nul - -rmdir /q $(TARGETPATH) > nul - -############################################## - -$(INSTPATH): - if not exist $@ mkdir $@ > nul - -_install_: $(INSTPATH) - copy $(TARGET) $(INSTPATH) > nul diff --git a/externals/grill/flext/buildsys/win/bmake-bcc-flext.inc b/externals/grill/flext/buildsys/win/bmake-bcc-flext.inc deleted file mode 100644 index 0d82065e..00000000 --- a/externals/grill/flext/buildsys/win/bmake-bcc-flext.inc +++ /dev/null @@ -1,70 +0,0 @@ -# build class specific settings - -############################################## - -# default target -_build_: $(TARGET) - -$(OUTPATH): - if not exist $@ mkdir $@ > nul - -$(TARGETPATH): $(OUTPATH) - if not exist $@ mkdir $@ > nul - -{$(SRCDIR)}.cpp{}.obj: - bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(TARGETPATH) $< - -{$(SRCDIR)}.c{}.obj: - bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(TARGETPATH) $< - - -$(TARGETPATH)\pd.lib : $(PDPATH)\bin\pd.dll - implib -a $< $** - -$(TARGETPATH)\pthreadVC.lib : $(PDPATH)\bin\pthreadVC.dll - implib -a $< $** - -PDTARGETS=$(TARGETPATH)\pd.lib $(TARGETPATH)\pthreadVC.lib - - -$(TARGET) :: $(TARGETPATH) $(PDTARGETS) - -$(TARGET) :: $(OBJS) - @cd $(TARGETPATH) -!ifdef SHARED - ilink32 $(LDFLAGS) $(LIBPATH) -L. $(OBJS) ,$(<F),,$(LIBS) - implib -a $(<B).lib $(<F) -!else - -del $(<F) - tlib "$(<F)" +$(OBJS: = +) -!endif - @cd ..\.. - -############################################## - -_clean_: - -del /q $(TARGETPATH)\*.* > nul - -rmdir /q $(TARGETPATH) > nul - -############################################## - -!ifdef SHARED -FLEXTLIBINST=$(FLEXTSHLIB) -!else -FLEXTLIBINST=$(FLEXTLIB) -!endif - -_install_: - @if not exist $(FLEXTINC) mkdir $(FLEXTINC) > nul - @if not exist $(FLEXTLIB) mkdir $(FLEXTLIB) > nul - @if not exist $(FLEXTLIBINST) mkdir $(FLEXTLIBINST) > nul - - copy $(TARGET) $(FLEXTLIBINST) > nul -!ifdef SHARED -# copy import library - copy $(TARGET:.dll=.lib) $(FLEXTLIB) > nul -!endif -# copy headers - for %%i in ($(HDRS)) do @copy $(SRCDIR)\%%i $(FLEXTINC) > nul -# copy import libraries - for %%i in ($(PDTARGETS)) do @copy %%i $(FLEXTLIB) > nul diff --git a/externals/grill/flext/buildsys/win/bmake-bcc.inc b/externals/grill/flext/buildsys/win/bmake-bcc.inc deleted file mode 100644 index 67ce16f0..00000000 --- a/externals/grill/flext/buildsys/win/bmake-bcc.inc +++ /dev/null @@ -1,36 +0,0 @@ -!ifdef BCCPATH -INCPATH=$(INCPATH) -I$(BCCPATH)\include -LIBPATH=$(LIBPATH) -L$(BCCPATH)\lib -!endif - -############################################## - -OBJPATH=$(OUTPATH)\$(OUTSUB) -TARGETPATH=$(OBJPATH) -TARGET=$(TARGETPATH)\$(OUTNAME).$(EXT) - -############################################## -# use precompiled headers - -!ifdef PRECOMPILE -CFLAGS=$(CFLAGS) -Hh=$(PRECOMPILE) -H=$(OBJPATH)\precompiled.pch -!endif - -############################################## - -LIBS=$(LIBS) cw32.lib import32.lib C0D32.OBJ -CFLAGS=$(CFLAGS) -tWD -tWM -w-8004 -w-8027 -w-8057 -LDFLAGS=$(LDFLAGS) /C /Tpd - -############################################## - -!ifdef DEBUG -CFLAGS=$(CFLAGS) -v -LDFLAGS=$(LDFLAGS) /v -!endif - -############################################## -# convert both *.c and *.cpp - -OBJSTMP= $(SRCS:.c=.obj) -OBJS= $(OBJSTMP:.objpp=.obj) diff --git a/externals/grill/flext/buildsys/win/gnumake-cygwin-ext.inc b/externals/grill/flext/buildsys/win/gnumake-cygwin-ext.inc deleted file mode 100644 index 141d5093..00000000 --- a/externals/grill/flext/buildsys/win/gnumake-cygwin-ext.inc +++ /dev/null @@ -1,42 +0,0 @@ -# build class specific settings - -INCPATH += -I$(FLEXTINC) -LIBPATH += -L$(FLEXTLIB) -L$(FLEXTSHLIB) -LIBS += -l$(FLEXTNAME) - -############################################## - -# default target -_build_: $(TARGET) - -$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS)) - touch $@ - -$(TARGETPATH): - -mkdir -p $@ - -$(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp - $(CXX) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@ - -$(TARGETPATH)/%.o : $(SRCDIR)/%.c - $(CC) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@ - -$(TARGET) :: $(TARGETPATH) - -$(TARGET) :: $(COBJS) $(CPPOBJS) - $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $(COBJS) $(CPPOBJS) $(LIBS) $(SYSLIBS) - strip --strip-unneeded $@ - chmod 755 $@ - -############################################## - -_clean_: - rm $(COBJS) $(CPPOBJS) $(TARGET) - -############################################## - -$(INSTPATH): - -mkdir -p $(INSTPATH) - -_install_: $(INSTPATH) - install $(TARGET) $(INSTPATH) diff --git a/externals/grill/flext/buildsys/win/gnumake-cygwin-flext.inc b/externals/grill/flext/buildsys/win/gnumake-cygwin-flext.inc deleted file mode 100644 index e8940a5d..00000000 --- a/externals/grill/flext/buildsys/win/gnumake-cygwin-flext.inc +++ /dev/null @@ -1,52 +0,0 @@ -# build class specific settings - -############################################## - -# default target -_build_: $(TARGET) - -$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS)) - touch $@ - -$(TARGETPATH): - -mkdir -p $@ - -$(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp - $(CXX) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@ - -$(TARGETPATH)/%.o : $(SRCDIR)/%.c - $(CC) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@ - -$(TARGET) :: $(TARGETPATH) - -$(TARGET) :: $(COBJS) $(CPPOBJS) -ifdef SHARED - $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $(COBJS) $(CPPOBJS) $(LIBS) $(SYSLIBS) - chmod 755 $@ - strip --strip-unneeded $@ -else - $(AR) rc $@ $(COBJS) $(CPPOBJS) -endif - -############################################## - -_clean_: - rm $(COBJS) $(CPPOBJS) $(TARGET) - -############################################## - -ifdef SHARED -FLEXTLIBINST=$(FLEXTSHLIB) -else -FLEXTLIBINST=$(FLEXTLIB) -endif - -$(FLEXTINC): - -mkdir -p $(FLEXTINC) - -$(FLEXTLIBINST): - -mkdir -p $(FLEXTLIBINST) - -_install_: $(FLEXTINC) $(FLEXTLIBINST) - install $(TARGET) $(FLEXTLIBINST) - install $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(FLEXTINC) diff --git a/externals/grill/flext/buildsys/win/gnumake-cygwin.inc b/externals/grill/flext/buildsys/win/gnumake-cygwin.inc deleted file mode 100644 index 48155ff1..00000000 --- a/externals/grill/flext/buildsys/win/gnumake-cygwin.inc +++ /dev/null @@ -1,30 +0,0 @@ -############################################## - -OBJPATH=$(OUTPATH)/$(OUTSUB) -TARGETPATH=$(OBJPATH) -TARGET=$(TARGETPATH)/$(OUTNAME).$(EXT) - -############################################## - -CFLAGS += -mno-cygwin -LDFLAGS += -shared -mno-cygwin - -############################################## - -ifdef DEBUG -CFLAGS += -g -else -ifdef PROFILE -CFLAGS += -g -pg -LDFLAGS += -pg -else -LDFLAGS += -Wl,-S -endif -endif - -############################################## - -CSRCS=$(patsubst %.c,$(SRCDIR)/%.c,$(filter %.c,$(SRCS))) -CPPSRCS=$(patsubst %.cpp,$(SRCDIR)/%.cpp,$(filter %.cpp,$(SRCS))) -COBJS=$(patsubst %.c,$(OBJPATH)/%.o,$(filter %.c,$(SRCS))) -CPPOBJS=$(patsubst %.cpp,$(OBJPATH)/%.opp,$(filter %.cpp,$(SRCS))) diff --git a/externals/grill/flext/buildsys/win/gnumake-mingw-ext.inc b/externals/grill/flext/buildsys/win/gnumake-mingw-ext.inc deleted file mode 100644 index 3a998a5d..00000000 --- a/externals/grill/flext/buildsys/win/gnumake-mingw-ext.inc +++ /dev/null @@ -1,48 +0,0 @@ -# build class specific settings - -INCPATH += -I$(FLEXTINC) -LIBPATH += -L$(FLEXTLIB) -L$(FLEXTSHLIB) - -ifdef SHARED -LIBS += $(FLEXTSHLIB)/lib$(FLEXTNAME).dll -else -LIBS += -l$(FLEXTNAME) -endif - -############################################## - -# default target -_build_: $(TARGET) - -#$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS)) -# touch $@ - -$(OUTPATH): - -mkdir $(subst /,\,$@) - -$(TARGETPATH): $(OUTPATH) - -mkdir $(subst /,\,$@) - -$(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp - $(CXX) -c $(CFLAGS) $(DEFS) $(subst \,/,$(INCPATH)) $< -o $(subst /,\,$@) - -$(TARGETPATH)/%.o : $(SRCDIR)/%.c - $(CC) -c $(CFLAGS) $(DEFS) $(subst \,/,$(INCPATH)) $< -o $(subst /,\,$@) - -$(TARGET) :: $(TARGETPATH) - -$(TARGET) :: $(COBJS) $(CPPOBJS) - $(CXX) $(LDFLAGS) $(subst \,/,$(LIBPATH)) -o $(subst /,\,$@) $(subst /,\,$(COBJS) $(CPPOBJS) $(LIBS) $(SYSLIBS)) - -strip --strip-unneeded $@ - -############################################## - -_clean_: - -del /q $(subst /,\,$(TARGETPATH)/*.*) > nul - -rmdir /q $(subst /,\,$(TARGETPATH)) > nul - -############################################## - -_install_: - @if not exist $(subst /,\,$(INSTPATH)) -mkdir $(subst /,\,$(INSTPATH)) - copy $(subst /,\,$(TARGET) $(INSTPATH)) diff --git a/externals/grill/flext/buildsys/win/gnumake-mingw-flext.inc b/externals/grill/flext/buildsys/win/gnumake-mingw-flext.inc deleted file mode 100644 index 8cd51720..00000000 --- a/externals/grill/flext/buildsys/win/gnumake-mingw-flext.inc +++ /dev/null @@ -1,52 +0,0 @@ -# build class specific settings - -############################################## - -# default target -_build_: $(TARGET) - -#$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS)) -# touch $@ - -$(OUTPATH): - -mkdir $(subst /,\,$@) - -$(TARGETPATH): $(OUTPATH) - -mkdir $(subst /,\,$@) - -$(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp - $(CXX) -c $(CFLAGS) $(DEFS) $(subst \,/,$(INCPATH)) $< -o $(subst /,\,$@) - -$(TARGETPATH)/%.o : $(SRCDIR)/%.c - $(CC) -c $(CFLAGS) $(DEFS) $(subst \,/,$(INCPATH)) $< -o $(subst /,\,$@) - -$(TARGET) :: $(TARGETPATH) - -$(TARGET) :: $(COBJS) $(CPPOBJS) -ifdef SHARED - $(CXX) $(LDFLAGS) $(LIBPATH) -o $(subst /,\,$@) $(subst /,\,$(COBJS) $(CPPOBJS) $(LIBS)) - -strip --strip-unneeded $@ -else - $(AR) rc $@ $(COBJS) $(CPPOBJS) -endif - -############################################## - -_clean_: - -del /q $(subst /,\,$(TARGETPATH)/*.*) > nul - -rmdir /q $(subst /,\,$(TARGETPATH)) > nul - -############################################## - -ifdef SHARED -FLEXTLIBINST=$(FLEXTSHLIB) -else -FLEXTLIBINST=$(FLEXTLIB) -endif - -_install_:: - @if not exist $(subst /,\,$(FLEXTINC)) -mkdir $(subst /,\,$(FLEXTINC)) - @if not exist $(subst /,\,$(FLEXTLIBINST)) -mkdir $(subst /,\,$(FLEXTLIBINST)) - - copy $(subst /,\,$(TARGET) $(FLEXTLIBINST)) - -for %%i in ($(HDRS)) do @copy $(SRCDIR)\%%i $(subst /,\,$(FLEXTINC)) > nul diff --git a/externals/grill/flext/buildsys/win/gnumake-mingw.inc b/externals/grill/flext/buildsys/win/gnumake-mingw.inc deleted file mode 100644 index 82ee4381..00000000 --- a/externals/grill/flext/buildsys/win/gnumake-mingw.inc +++ /dev/null @@ -1,30 +0,0 @@ -############################################## - -OBJPATH=$(OUTPATH)\$(OUTSUB) -TARGETPATH=$(OBJPATH) -TARGET=$(TARGETPATH)\$(OUTNAME).$(EXT) - -############################################## - -CFLAGS += -mms-bitfields -mno-cygwin -LDFLAGS += -shared -mno-cygwin - -############################################## - -ifdef DEBUG -CFLAGS += -g -else -ifdef PROFILE -CFLAGS += -g -pg -LDFLAGS += -pg -else -LDFLAGS += -Wl,-S -endif -endif - -############################################## - -CSRCS=$(patsubst %.c,$(SRCDIR)/%.c,$(filter %.c,$(SRCS))) -CPPSRCS=$(patsubst %.cpp,$(SRCDIR)/%.cpp,$(filter %.cpp,$(SRCS))) -COBJS=$(patsubst %.c,$(OBJPATH)/%.o,$(filter %.c,$(SRCS))) -CPPOBJS=$(patsubst %.cpp,$(OBJPATH)/%.opp,$(filter %.cpp,$(SRCS))) diff --git a/externals/grill/flext/buildsys/win/max/config-cygwin.def b/externals/grill/flext/buildsys/win/max/config-cygwin.def deleted file mode 100644 index a4562a73..00000000 --- a/externals/grill/flext/buildsys/win/max/config-cygwin.def +++ /dev/null @@ -1,51 +0,0 @@ -# where is the Max/MSP application?
-MAXAPPPATH=/cygdrive/c/program\ files/MaxMSP\ 4.5
-
-# where are the Max/MSP common files?
-MAXCOMPATH=/cygdrive/c/program\ files/common\ files/Cycling\ \'74
-
-
-# where are the Max/MSP SDK header files?
-# you should have the latest version!
-MAXSDKPATH=$(MAXAPPPATH)/maxmspsdk_win/4.5\ headers/c74support
-
-###############################################################
-
-###############################################################
-
-# where do/should the flext headers reside/be built?
-FLEXTINC=$(MAXCOMPATH)/flext
-
-# where do/should the flext static libraries reside/be built?
-FLEXTLIB=$(FLEXTINC)
-
-# where do/should the flext shared libraries reside/be built?
-# (a good place is the MaxMSP program folder)
-FLEXTSHLIB=$(MAXAPPPATH)
-
-###############################################################
-
-# where should the external be built?
-# (path for temporary files)
-OUTPATH=max-cygwin
-
-# where should the external be installed?
-INSTPATH=$(MAXCOMPATH)/externals/flext
-
-# where should the initialization files be installed?
-INITPATH=$(MAXCOMPATH)/init
-
-# where should the help files be installed?
-HELPPATH=$(MAXAPPPATH)/max-help/flext
-
-###############################################################
-
-# user defined compiler flags
-# (check if they match your system!)
-UFLAGS=-msse -mfpmath=sse -ffast-math
-
-# user defined optimization flags
-# (check if they match your system!)
-OFLAGS=-O3
-# optimizations for Pentium 4
-OFLAGS+=-march=pentium4
diff --git a/externals/grill/flext/buildsys/win/max/config-mingw.def b/externals/grill/flext/buildsys/win/max/config-mingw.def deleted file mode 100644 index 9c9e3d4a..00000000 --- a/externals/grill/flext/buildsys/win/max/config-mingw.def +++ /dev/null @@ -1,42 +0,0 @@ -# where are the Max/MSP SDK header files? -# you should have the latest version! -MAXSDKPATH="%ProgramFiles%\MaxMSP 4.5/maxmspsdk_win/4.5 headers/c74support" - -############################################################### - -# where do/should the flext headers reside/be built? -FLEXTINC="%CommonProgramFiles%/Cycling '74/flext" - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -# (a good place is the MaxMSP program folder) -FLEXTSHLIB="%ProgramFiles%\MaxMSP 4.5" - -############################################################### - -# where should the external be built? -# (path for temporary files) -OUTPATH=max-mingw - -# where should the external be installed? -INSTPATH="%CommonProgramFiles%/Cycling '74/externals/flext" - -# where should the initialization files be installed? -INITPATH="%CommonProgramFiles%/Cycling '74/init" - -# where should the help files be installed? -HELPPATH="%ProgramFiles%/MaxMSP 4.5/max-help/flext" - -############################################################### - -# user defined compiler flags -# (check if they match your system!) -UFLAGS=-msse -ffast-math - -# user defined optimization flags -# (check if they match your system!) -OFLAGS=-O3 -# optimizations for Pentium 4 -OFLAGS+=-march=pentium4 diff --git a/externals/grill/flext/buildsys/win/max/config-msvc.def b/externals/grill/flext/buildsys/win/max/config-msvc.def deleted file mode 100644 index f67b6b7f..00000000 --- a/externals/grill/flext/buildsys/win/max/config-msvc.def +++ /dev/null @@ -1,46 +0,0 @@ -# where are the Max/MSP SDK header files? -# you should have the latest version! -MAXSDKPATH="%ProgramFiles%\MaxMSP 4.5\maxmspsdk_win\4.5 headers\c74support" - -# where is MS VC++? -# (not necessary if the build is run with the compiler environment) -# MSVCPATH="%ProgramFiles%\Microsoft Visual Studio .NET 2003\Vc7" - -############################################################### - -# where do/should the flext headers reside/be built? -FLEXTINC="%CommonProgramFiles%\Cycling '74\flext" - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -# (a good place is the MaxMSP program folder) -FLEXTSHLIB="%ProgramFiles%\MaxMSP 4.5" - -############################################################### - -# where should the external be built? -# (path for temporary files) -OUTPATH=max-msvc - -# where should the external be installed? -INSTPATH="%CommonProgramFiles%\Cycling '74\externals\flext" - -# where should the initialization files be installed? -INITPATH="%CommonProgramFiles%\Cycling '74\init" - -# where should the help files be installed? -HELPPATH="%ProgramFiles%\MaxMSP 4.5\max-help\flext" - -############################################################### - -# some user-definable flags -# (check if they match your system!) -OFLAGS=/Ox -# optimizations for Pentium 4 -#OFLAGS=$(OFLAGS) /G6 /arch:SSE - -# uncomment to link against dynamic C runtime libraries -# (don't use this if you want to distribute the built product) -#DYNAMIC=1 diff --git a/externals/grill/flext/buildsys/win/max/gnumake-cygwin-ext.inc b/externals/grill/flext/buildsys/win/max/gnumake-cygwin-ext.inc deleted file mode 100644 index 5df7e2f2..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-cygwin-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=mxe
diff --git a/externals/grill/flext/buildsys/win/max/gnumake-cygwin-flext.inc b/externals/grill/flext/buildsys/win/max/gnumake-cygwin-flext.inc deleted file mode 100644 index 60cd079a..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-cygwin-flext.inc +++ /dev/null @@ -1,6 +0,0 @@ -ifdef SHARED
-EXT=dll
-else
-EXT=a
-endif
-
diff --git a/externals/grill/flext/buildsys/win/max/gnumake-cygwin.inc b/externals/grill/flext/buildsys/win/max/gnumake-cygwin.inc deleted file mode 100644 index f0ceced1..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-cygwin.inc +++ /dev/null @@ -1,10 +0,0 @@ -DEFS += -DFLEXT_SYS=1
-
-# fpack-struct should align to 2 bytes... can't specify that...
-CFLAGS += -DWINVER=0x0501 -D_WIN32_WINNT=0x501
-
-INCPATH += -I$(MAXSDKPATH)/max-includes -I$(MAXSDKPATH)/jit-includes -I$(MAXSDKPATH)/msp-includes
-LIBPATH += -L$(MAXSDKPATH)/max-includes -L$(MAXSDKPATH)/jit-includes -L$(MAXSDKPATH)/msp-includes
-
-# these are both in MAXSDKPATH
-SYSLIBS += -lMaxAPI -lMaxAudio
diff --git a/externals/grill/flext/buildsys/win/max/gnumake-mingw-ext.inc b/externals/grill/flext/buildsys/win/max/gnumake-mingw-ext.inc deleted file mode 100644 index 04e59462..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-mingw-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=mxe diff --git a/externals/grill/flext/buildsys/win/max/gnumake-mingw-flext.inc b/externals/grill/flext/buildsys/win/max/gnumake-mingw-flext.inc deleted file mode 100644 index 821d6fbc..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-mingw-flext.inc +++ /dev/null @@ -1,6 +0,0 @@ -ifdef SHARED -EXT=dll -else -EXT=LIB -endif - diff --git a/externals/grill/flext/buildsys/win/max/gnumake-mingw.inc b/externals/grill/flext/buildsys/win/max/gnumake-mingw.inc deleted file mode 100644 index 1baa82f9..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-mingw.inc +++ /dev/null @@ -1,12 +0,0 @@ -DEFS += -DFLEXT_SYS=1 - -# fpack-struct should align to 2 bytes... can't specify that... -CFLAGS += -DWINVER=0x0501 -D_WIN32_WINNT=0x501 -# suppress multiple symbol errors -LDFLAGS += -Wl,--allow-multiple-definition - -INCPATH += -I$(MAXSDKPATH)/max-includes -I$(MAXSDKPATH)/jit-includes -I$(MAXSDKPATH)/msp-includes -LIBPATH += -L$(MAXSDKPATH)/max-includes -L$(MAXSDKPATH)/jit-includes -L$(MAXSDKPATH)/msp-includes - -# these are both in MAXSDKPATH -SYSLIBS += -lMaxAPI -lMaxAudio diff --git a/externals/grill/flext/buildsys/win/max/nmake-msvc-ext.inc b/externals/grill/flext/buildsys/win/max/nmake-msvc-ext.inc deleted file mode 100644 index 04e59462..00000000 --- a/externals/grill/flext/buildsys/win/max/nmake-msvc-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=mxe diff --git a/externals/grill/flext/buildsys/win/max/nmake-msvc-flext.inc b/externals/grill/flext/buildsys/win/max/nmake-msvc-flext.inc deleted file mode 100644 index d30a7144..00000000 --- a/externals/grill/flext/buildsys/win/max/nmake-msvc-flext.inc +++ /dev/null @@ -1,5 +0,0 @@ -!ifdef SHARED -EXT=dll -!else -EXT=lib -!endif diff --git a/externals/grill/flext/buildsys/win/max/nmake-msvc.inc b/externals/grill/flext/buildsys/win/max/nmake-msvc.inc deleted file mode 100644 index 089e5a57..00000000 --- a/externals/grill/flext/buildsys/win/max/nmake-msvc.inc +++ /dev/null @@ -1,8 +0,0 @@ -DEFS=$(DEFS) /DFLEXT_SYS=1 -CFLAGS=$(CFLAGS) /Zp2 /DWINVER=0x0501 /D_WIN32_WINNT=0x501 - -INCPATH=$(INCPATH) /I$(MAXSDKPATH)\max-includes /I$(MAXSDKPATH)\jit-includes /I$(MAXSDKPATH)\msp-includes -LIBPATH=$(LIBPATH) /LIBPATH:$(MAXSDKPATH)\max-includes /LIBPATH:$(MAXSDKPATH)\jit-includes /LIBPATH:$(MAXSDKPATH)\msp-includes - -# these are both in MAXSDKPATH -LIBS=$(LIBS) maxapi.lib maxaudio.lib diff --git a/externals/grill/flext/buildsys/win/nmake-msvc-ext.inc b/externals/grill/flext/buildsys/win/nmake-msvc-ext.inc deleted file mode 100644 index 2a86155a..00000000 --- a/externals/grill/flext/buildsys/win/nmake-msvc-ext.inc +++ /dev/null @@ -1,43 +0,0 @@ -# build class specific settings - -INCPATH=$(INCPATH) /I$(FLEXTINC) -LIBPATH=$(LIBPATH) /LIBPATH:$(FLEXTLIB) -LIBS=$(LIBS) $(FLEXTNAME).lib - -############################################## - -# default target -_build_: $(TARGET) - -$(OUTPATH): - if not exist $@ mkdir $@ > nul - -$(TARGETPATH): $(OUTPATH) - if not exist $@ mkdir $@ > nul - -{$(SRCDIR)}.cpp{}.obj: - cl /c $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(TARGETPATH)\$@ - -{$(SRCDIR)}.c{}.obj: - cl /c $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(TARGETPATH)\$@ - -$(TARGET):: $(TARGETPATH) - -$(TARGET):: $(OBJS) - @cd $(TARGETPATH) - link /DLL $(LDFLAGS) $(LIBPATH) $(OBJS) $(LIBS) /out:$(@F) - @cd ..\.. - -############################################## -# remove build - -_clean_: - -del /q $(TARGETPATH)\*.* > nul - -rmdir /q $(TARGETPATH) > nul - -############################################## - -_install_: - @if not exist $(INSTPATH) mkdir $(INSTPATH) > nul - - copy $(TARGET) $(INSTPATH) > nul diff --git a/externals/grill/flext/buildsys/win/nmake-msvc-flext.inc b/externals/grill/flext/buildsys/win/nmake-msvc-flext.inc deleted file mode 100644 index 36a72f4d..00000000 --- a/externals/grill/flext/buildsys/win/nmake-msvc-flext.inc +++ /dev/null @@ -1,59 +0,0 @@ -# build class specific settings - -############################################## - -# default target -_build_: $(TARGET) - -$(OUTPATH): - if not exist $@ mkdir $@ > nul - -$(TARGETPATH): $(OUTPATH) - if not exist $@ mkdir $@ > nul - -{$(SRCDIR)}.cpp{}.obj: - cl /c /LD $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(TARGETPATH)\$@ - -{$(SRCDIR)}.c{}.obj: - cl /c /LD $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(TARGETPATH)\$@ - - -$(TARGET):: $(TARGETPATH) - -$(TARGET):: $(OBJS) - @cd $(TARGETPATH) -!ifdef SHARED - link /DLL $(LDFLAGS) $(LIBPATH) $(OBJS) $(LIBS) /out:$(@F) -!else - lib /OUT:$(@F) $(OBJS) -!endif - @cd ..\.. - -############################################## - -# remove build -_clean_: - -del /q $(TARGETPATH)\*.* > nul - -rmdir /q $(TARGETPATH) > nul - -############################################## - -!ifdef SHARED -FLEXTLIBINST=$(FLEXTSHLIB) -!else -FLEXTLIBINST=$(FLEXTLIB) -!endif - -_install_: -# create folders - @if not exist $(FLEXTINC) mkdir $(FLEXTINC) > nul - @if not exist $(FLEXTLIB) mkdir $(FLEXTLIB) > nul - @if not exist $(FLEXTLIBINST) mkdir $(FLEXTLIBINST) > nul - - copy $(TARGET) $(FLEXTLIBINST) > nul -!ifdef SHARED -# copy import library - copy $(TARGET:.dll=.lib) $(FLEXTLIB) > nul -!endif -# copy headers - for %%i in ($(HDRS)) do @copy $(SRCDIR)\%%i $(FLEXTINC) > nul diff --git a/externals/grill/flext/buildsys/win/nmake-msvc-shlib.inc b/externals/grill/flext/buildsys/win/nmake-msvc-shlib.inc deleted file mode 100644 index 3b436599..00000000 --- a/externals/grill/flext/buildsys/win/nmake-msvc-shlib.inc +++ /dev/null @@ -1,45 +0,0 @@ -# build class specific settings
-
-INCPATH=$(INCPATH) /I$(FLEXTINC)
-LIBPATH=$(LIBPATH) /LIBPATH:$(FLEXTLIB)
-LIBS=$(LIBS) $(FLEXTNAME).lib
-
-##############################################
-
-# default target
-_build_: $(TARGET)
-
-$(OUTPATH):
- if not exist $@ mkdir $@ > nul
-
-$(TARGETPATH): $(OUTPATH)
- if not exist $@ mkdir $@ > nul
-
-{$(SRCDIR)}.cpp{}.obj:
- cl /c $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(TARGETPATH)\$@
-
-{$(SRCDIR)}.c{}.obj:
- cl /c $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(TARGETPATH)\$@
-
-$(TARGET):: $(TARGETPATH)
-
-$(TARGET):: $(OBJS)
- @cd $(TARGETPATH)
- link /DLL $(LDFLAGS) $(LIBPATH) $(OBJS) $(LIBS) /OUT:$(@F)
- @cd ..\..
-
-##############################################
-# remove build
-
-_clean_:
- -del /q $(TARGETPATH)\*.* > nul
- -rmdir /q $(TARGETPATH) > nul
-
-##############################################
-
-_install_:
- @if not exist $(FLEXTSHLIB) mkdir $(FLEXTSHLIB) > nul
-
- copy $(TARGET) $(FLEXTSHLIB) > nul
-# copy import library
- copy $(TARGET:.dll=.lib) $(FLEXTSHLIB) > nul
diff --git a/externals/grill/flext/buildsys/win/nmake-msvc.inc b/externals/grill/flext/buildsys/win/nmake-msvc.inc deleted file mode 100644 index d19fd44e..00000000 --- a/externals/grill/flext/buildsys/win/nmake-msvc.inc +++ /dev/null @@ -1,59 +0,0 @@ -!ifdef MSVCPATH -INCPATH=$(INCPATH) /I$(MSVCPATH)\include -LIBPATH=$(LIBPATH) /LIBPATH:$(MSVCPATH)\lib -!endif - -############################################## - -OBJPATH=$(OUTPATH)\$(OUTSUB) -TARGETPATH=$(OBJPATH) -TARGET=$(TARGETPATH)\$(OUTNAME).$(EXT) - -############################################## -# use precompiled headers (automatic mode) - -!ifdef PRECOMPILE -CFLAGS=$(CFLAGS) /YX$(PRECOMPILE) /Fp$(OBJPATH)\precompiled.pch -!endif - -############################################## - -# create code for DLL -CFLAGS=$(CFLAGS) /LD - -# enable exception handling and RTTI -CFLAGS=$(CFLAGS) /EHsc /GR - -# no banner -CFLAGS=$(CFLAGS) /nologo -LDFLAGS=$(LDFLAGS) /nologo - -############################################## - -!ifdef DEBUG - -!ifdef DYNAMIC -CFLAGS=$(CFLAGS) /MDd -!else -CFLAGS=$(CFLAGS) /MTd -!endif - -LDFLAGS=$(LDFLAGS) /DEBUG - -!else - -!ifdef DYNAMIC -CFLAGS=$(CFLAGS) /MD -!else -CFLAGS=$(CFLAGS) /MT -!endif - -LDFLAGS=$(LDFLAGS) /INCREMENTAL:NO - -!endif - -############################################## -# convert both *.c and *.cpp - -OBJSTMP= $(SRCS:.c=.obj) -OBJS= $(OBJSTMP:.objpp=.obj) diff --git a/externals/grill/flext/buildsys/win/pd/bmake-bcc-ext.inc b/externals/grill/flext/buildsys/win/pd/bmake-bcc-ext.inc deleted file mode 100644 index 26bcf06e..00000000 --- a/externals/grill/flext/buildsys/win/pd/bmake-bcc-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=dll diff --git a/externals/grill/flext/buildsys/win/pd/bmake-bcc-flext.inc b/externals/grill/flext/buildsys/win/pd/bmake-bcc-flext.inc deleted file mode 100644 index d30a7144..00000000 --- a/externals/grill/flext/buildsys/win/pd/bmake-bcc-flext.inc +++ /dev/null @@ -1,5 +0,0 @@ -!ifdef SHARED -EXT=dll -!else -EXT=lib -!endif diff --git a/externals/grill/flext/buildsys/win/pd/bmake-bcc-shlib.inc b/externals/grill/flext/buildsys/win/pd/bmake-bcc-shlib.inc deleted file mode 100644 index b2234c5b..00000000 --- a/externals/grill/flext/buildsys/win/pd/bmake-bcc-shlib.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=dll
diff --git a/externals/grill/flext/buildsys/win/pd/bmake-bcc.inc b/externals/grill/flext/buildsys/win/pd/bmake-bcc.inc deleted file mode 100644 index a15a75e6..00000000 --- a/externals/grill/flext/buildsys/win/pd/bmake-bcc.inc +++ /dev/null @@ -1,12 +0,0 @@ -DEFS=$(DEFS) /DFLEXT_SYS=2 /DPD - -!ifdef WINNT -DEFS=$(DEFS) /D_WIN32_WINNT=0x500 -!endif - -############################################## - -INCPATH=$(INCPATH) -I$(PDPATH)\src - -# these are both in FLEXTPATH -LIBS=$(LIBS) pd.lib pthreadVC.lib diff --git a/externals/grill/flext/buildsys/win/pd/config-bcc.def b/externals/grill/flext/buildsys/win/pd/config-bcc.def deleted file mode 100644 index 54e8397d..00000000 --- a/externals/grill/flext/buildsys/win/pd/config-bcc.def +++ /dev/null @@ -1,38 +0,0 @@ -# where is the PD installation? -# (this should point to the main folder, which has a "src" subfolder) -PDPATH="c:\program files\pd" - -# where is BorlandC++? -BCCPATH="c:\program files\bcc55" - -############################################################### - -# where do/should the flext headers reside/be built? -FLEXTINC=$(PDPATH)\flext - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -FLEXTSHLIB=$(PDPATH)\bin - -############################################################### - -# where should the external be built? -OUTPATH=pd-bcc - -# where should the external be installed? -INSTPATH=$(PDPATH)\extra - -############################################################### - -# user defined compiler flags -# (check if they match your system!) -UFLAGS= - -# user defined optimization flags -# (check if they match your system!) -OFLAGS=-6 -O2 -OS -ff -d - -# comment if you want to compile for Windows 95/98/ME -WINNT=1 diff --git a/externals/grill/flext/buildsys/win/pd/config-cygwin.def b/externals/grill/flext/buildsys/win/pd/config-cygwin.def deleted file mode 100644 index 6c35151a..00000000 --- a/externals/grill/flext/buildsys/win/pd/config-cygwin.def +++ /dev/null @@ -1,34 +0,0 @@ -# where is the PD installation? -# (this should point to the main folder, which has a "src" subfolder) -PDPATH=/cygdrive/c/program files/pd - -############################################################### - -# where do/should the flext headers reside/be built? -FLEXTINC=$(PDPATH)/flext - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -FLEXTSHLIB=$(PDPATH)/bin - -############################################################### - -# where should the external be built? -OUTPATH=pd-cygwin - -# where should the external be installed? -INSTPATH=$(PDPATH)/extra - -############################################################### - -# user defined compiler flags -# (check if they match your system!) -UFLAGS=-msse -mfpmath=sse -ffast-math - -# user defined optimization flags -# (check if they match your system!) -OFLAGS=-O3 -# optimizations for Pentium 4 -OFLAGS+=-march=pentium4 diff --git a/externals/grill/flext/buildsys/win/pd/config-mingw.def b/externals/grill/flext/buildsys/win/pd/config-mingw.def deleted file mode 100644 index bed53e35..00000000 --- a/externals/grill/flext/buildsys/win/pd/config-mingw.def +++ /dev/null @@ -1,37 +0,0 @@ -# where is the PD installation? -# (this should point to the main folder, which has a "src" subfolder) -PDPATH="%ProgramFiles%\pd" - -############################################################### - -# where do/should the flext headers reside/be built? -FLEXTINC=$(PDPATH)\flext - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -FLEXTSHLIB=$(PDPATH)\bin - -############################################################### - -# where should the external be built? -OUTPATH=pd-mingw - -# where should the external be installed? -INSTPATH=$(PDPATH)\extra - -############################################################### - -# user defined compiler flags -# (check if they match your system!) -UFLAGS=-msse -mfpmath=sse -ffast-math - -# user defined optimization flags -# (check if they match your system!) -OFLAGS=-O3 -# optimizations for Pentium 4 -OFLAGS+=-march=pentium4 - -# comment if you want to compile for Windows 95/98/ME -WINNT=1 diff --git a/externals/grill/flext/buildsys/win/pd/config-msvc.def b/externals/grill/flext/buildsys/win/pd/config-msvc.def deleted file mode 100644 index 49137ef5..00000000 --- a/externals/grill/flext/buildsys/win/pd/config-msvc.def +++ /dev/null @@ -1,46 +0,0 @@ -# where is the PD installation? -# (this should point to the main folder, which has a "src" subfolder) -PDPATH="%ProgramFiles%\pd" - -# where is MS VC++? -# (not necessary if the build is run with the compiler environment) -# MSVCPATH="%ProgramFiles%\Microsoft Visual Studio .NET 2003\Vc7" - -############################################################### - -# where do/should the flext headers reside/be built? -FLEXTINC=$(PDPATH)\flext - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -FLEXTSHLIB=$(PDPATH)\bin - -############################################################### - -# where should the external be built? -# (relative one-level subpath to project folder) -OUTPATH=pd-msvc - -# where should externals be installed? -INSTPATH=$(PDPATH)\extra - -############################################################### - -# user defined compiler flags -# (check if they match your system!) -UFLAGS= - -# user defined optimization flags -# (check if they match your system!) -OFLAGS=/Ox -# optimizations for Pentium 4 -OFLAGS=$(OFLAGS) /G6 /arch:SSE - -# comment if you want to compile for Windows 95/98/ME -WINNT=1 - -# uncomment to link against dynamic C runtime libraries -# (don't use this if you want to distribute the built product) -#DYNAMIC=1 diff --git a/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-ext.inc b/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-ext.inc deleted file mode 100644 index 26bcf06e..00000000 --- a/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=dll diff --git a/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-flext.inc b/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-flext.inc deleted file mode 100644 index e64eb6c5..00000000 --- a/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-flext.inc +++ /dev/null @@ -1,5 +0,0 @@ -ifdef SHARED -EXT=dll -else -EXT=a -endif diff --git a/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-shlib.inc b/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-shlib.inc deleted file mode 100644 index b2234c5b..00000000 --- a/externals/grill/flext/buildsys/win/pd/gnumake-cygwin-shlib.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=dll
diff --git a/externals/grill/flext/buildsys/win/pd/gnumake-cygwin.inc b/externals/grill/flext/buildsys/win/pd/gnumake-cygwin.inc deleted file mode 100644 index dca95023..00000000 --- a/externals/grill/flext/buildsys/win/pd/gnumake-cygwin.inc +++ /dev/null @@ -1,6 +0,0 @@ -DEFS += -DFLEXT_SYS=2 -DPD - -INCPATH += -I$(PDPATH)/src - -LIBS += $(PDPATH)/bin/pthreadVC.dll -SYSLIBS += $(PDPATH)/bin/pd.dll diff --git a/externals/grill/flext/buildsys/win/pd/gnumake-mingw-ext.inc b/externals/grill/flext/buildsys/win/pd/gnumake-mingw-ext.inc deleted file mode 100644 index 26bcf06e..00000000 --- a/externals/grill/flext/buildsys/win/pd/gnumake-mingw-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=dll diff --git a/externals/grill/flext/buildsys/win/pd/gnumake-mingw-flext.inc b/externals/grill/flext/buildsys/win/pd/gnumake-mingw-flext.inc deleted file mode 100644 index e64eb6c5..00000000 --- a/externals/grill/flext/buildsys/win/pd/gnumake-mingw-flext.inc +++ /dev/null @@ -1,5 +0,0 @@ -ifdef SHARED -EXT=dll -else -EXT=a -endif diff --git a/externals/grill/flext/buildsys/win/pd/gnumake-mingw-shlib.inc b/externals/grill/flext/buildsys/win/pd/gnumake-mingw-shlib.inc deleted file mode 100644 index b2234c5b..00000000 --- a/externals/grill/flext/buildsys/win/pd/gnumake-mingw-shlib.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=dll
diff --git a/externals/grill/flext/buildsys/win/pd/gnumake-mingw.inc b/externals/grill/flext/buildsys/win/pd/gnumake-mingw.inc deleted file mode 100644 index d3b6cedb..00000000 --- a/externals/grill/flext/buildsys/win/pd/gnumake-mingw.inc +++ /dev/null @@ -1,13 +0,0 @@ -DEFS += -DFLEXT_SYS=2 -DPD - -ifdef WINNT -CFLAGS += -D_WIN32_WINNT=0x500 -endif - -############################################## - -INCPATH += -I$(PDPATH)/src -LIBPATH += -L$(PDPATH)/bin - -# these are both in PDPATH -LIBS += -lpd -lpthreadVC diff --git a/externals/grill/flext/buildsys/win/pd/nmake-msvc-ext.inc b/externals/grill/flext/buildsys/win/pd/nmake-msvc-ext.inc deleted file mode 100644 index 26bcf06e..00000000 --- a/externals/grill/flext/buildsys/win/pd/nmake-msvc-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=dll diff --git a/externals/grill/flext/buildsys/win/pd/nmake-msvc-flext.inc b/externals/grill/flext/buildsys/win/pd/nmake-msvc-flext.inc deleted file mode 100644 index d30a7144..00000000 --- a/externals/grill/flext/buildsys/win/pd/nmake-msvc-flext.inc +++ /dev/null @@ -1,5 +0,0 @@ -!ifdef SHARED -EXT=dll -!else -EXT=lib -!endif diff --git a/externals/grill/flext/buildsys/win/pd/nmake-msvc-shlib.inc b/externals/grill/flext/buildsys/win/pd/nmake-msvc-shlib.inc deleted file mode 100644 index b2234c5b..00000000 --- a/externals/grill/flext/buildsys/win/pd/nmake-msvc-shlib.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=dll
diff --git a/externals/grill/flext/buildsys/win/pd/nmake-msvc.inc b/externals/grill/flext/buildsys/win/pd/nmake-msvc.inc deleted file mode 100644 index 89fba829..00000000 --- a/externals/grill/flext/buildsys/win/pd/nmake-msvc.inc +++ /dev/null @@ -1,13 +0,0 @@ -DEFS=$(DEFS) /DFLEXT_SYS=2 /DPD - -!ifdef WINNT -DEFS=$(DEFS) /D_WIN32_WINNT=0x500 -!endif - -############################################## - -INCPATH=$(INCPATH) /I$(PDPATH)\src -LIBPATH=$(LIBPATH) /LIBPATH:$(PDPATH)\bin - -# these are both in PDPATH -LIBS=$(LIBS) pd.lib pthreadVC.lib |