]> git.saurik.com Git - wxWidgets.git/commitdiff
removed unneeded makefiles
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 7 Mar 2004 09:37:09 +0000 (09:37 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 7 Mar 2004 09:37:09 +0000 (09:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/regex/makefile.sc [deleted file]
src/regex/makefile.vc [deleted file]
src/regex/makefile.wat [deleted file]

diff --git a/src/regex/makefile.sc b/src/regex/makefile.sc
deleted file mode 100644 (file)
index e2e7983..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-##############################################################################
-# Name:                        src/regex/makefile.sc
-# Purpose:             build regex Digital Mars 8.33 compiler
-# Author:              Chris Elliott
-# Created:             21.01.03
-# RCS-ID:              $Id$
-# Licence:             wxWindows licence
-##############################################################################
-
-WXDIR = ..\..
-
-include $(WXDIR)\src\makesc.env
-
-LIBTARGET=$(WXDIR)\lib\regex$(SC_SUFFIX).lib
-THISDIR=$(WXDIR)\src\regex
-
-# variables
-OBJECTS = \
-        $(THISDIR)\regcomp.obj \
-        $(THISDIR)\regexec.obj \
-        $(THISDIR)\regerror.obj \
-        $(THISDIR)\regfree.obj \
-
-include $(WXDIR)\src\makelib.sc
-
diff --git a/src/regex/makefile.vc b/src/regex/makefile.vc
deleted file mode 100644 (file)
index 5dd195c..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-!if "$(FINAL)" == "1"
-LIBTARGET=$(WXDIR)\lib\regex.lib
-!else if "$(FINAL)" == "hybrid"
-LIBTARGET=$(WXDIR)\lib\regexh.lib
-!else
-LIBTARGET=$(WXDIR)\lib\regexd.lib
-!endif
-
-OBJECTS= \
-               $D\regcomp.obj \
-               $D\regexec.obj \
-               $D\regerror.obj \
-               $D\regfree.obj
-
-# Pull in standard variable definitions
-
-!include ..\makelib.vc
-
diff --git a/src/regex/makefile.wat b/src/regex/makefile.wat
deleted file mode 100644 (file)
index ba3b063..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/binb/wmake.exe
-#
-# File:                makefile.wat
-# Author:      Julian Smart
-# Created:     1998
-# Changelist:  2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
-#
-# Makefile : Builds REGEX library for Watcom C++, WIN32
-
-WXDIR = ..\..
-EXTRACPPFLAGS=-DPOSIX_MISTAKE
-
-!include $(WXDIR)\src\makewat.env
-
-WXLIB = $(WXDIR)\lib
-
-LIBTARGET = $(WXLIB)\regex$(WATCOM_SUFFIX).lib
-
-OBJECTS = &
-               $(OUTPUTDIR)\regcomp.obj &
-               $(OUTPUTDIR)\regexec.obj &
-               $(OUTPUTDIR)\regerror.obj &
-               $(OUTPUTDIR)\regfree.obj
-
-all:        $(OUTPUTDIR) $(LIBTARGET) .SYMBOLIC
-
-$(OUTPUTDIR):
-       @if not exist $^@ mkdir $^@
-
-LBCFILE=$(OUTPUTDIR)\regex.lbc
-$(LIBTARGET) : $(OBJECTS)
-    %create $(LBCFILE)
-    @for %i in ( $(OBJECTS) ) do @%append $(LBCFILE) +%i
-    wlib /q /b /c /n /p=512 $^@ @$(LBCFILE)
-
-clean:   .SYMBOLIC
-    -erase *.obj
-    -erase $(LIBTARGET)
-    -erase *.pch
-    -erase *.err
-    -erase *.lbc
-
-cleanall:   clean
-