Files
wxWidgets/src/regex/makefile.wat
Václav Slavík 0cbc52f38e clean is symbolic target
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12963 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-09 15:38:45 +00:00

40 lines
658 B
Plaintext

#!/binb/wmake.exe
#
# File: makefile.wat
# Author: Julian Smart
# Created: 1998
#
# Makefile : Builds REGEX library for Watcom C++, WIN32
WXDIR = ..\..
EXTRACPPFLAGS=-DPOSIX_MISTAKE
!include $(WXDIR)\src\makewat.env
WXLIB = $(WXDIR)\lib
LIBTARGET = $(WXLIB)\regex.lib
OBJECTS= &
regcomp.obj &
regexec.obj &
regerror.obj &
regfree.obj
all: $(OBJECTS) $(LIBTARGET)
$(LIBTARGET) : $(OBJECTS)
%create tmp.lbc
@for %i in ( $(OBJECTS) ) do @%append tmp.lbc +%i
wlib /b /c /n /p=512 $^@ @tmp.lbc
clean: .SYMBOLIC
-erase *.obj
-erase $(LIBTARGET)
-erase *.pch
-erase *.err
-erase *.lbc
cleanall: clean