From 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 1 Apr 2009 21:13:09 +0000 Subject: cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/ svn path=/trunk/; revision=10951 --- .../grill/flext/buildsys/win/nmake-msvc-ext.inc | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 externals/grill/flext/buildsys/win/nmake-msvc-ext.inc (limited to 'externals/grill/flext/buildsys/win/nmake-msvc-ext.inc') 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 -- cgit v1.2.1