Borland makefiles now keep output apart

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2003-05-26 11:34:39 +00:00
parent ba0d56c3c2
commit 2cedc12a6a
11 changed files with 1472 additions and 1138 deletions

View File

@@ -1,13 +1,38 @@
# File: makefile.b32
# Author: Julian Smart
# Created: 1993
# Updated:
# Copyright:
#
# "%W% %G%"
#
# Makefile : Builds TIFF library (BC++ 32-bit)
# WXWIN and BCCDIR are set by parent make
WXWIN=..\..
LIBTARGET=regex
!include ..\makeb32.env
LIBTARGET=$(WXDIR)\lib\regex.lib
OBJECTS= \
regcomp.obj \
regexec.obj \
regerror.obj \
regfree.obj
$(OBJ_PATH)\regcomp.obj \
$(OBJ_PATH)\regexec.obj \
$(OBJ_PATH)\regerror.obj \
$(OBJ_PATH)\regfree.obj
# Pull in standard variable definitions
$(OBJ_PATH)\regcomp.obj: regcomp.c
$(OBJ_PATH)\regexec.obj: regexec.c
$(OBJ_PATH)\regerror.obj: regerror.c
$(OBJ_PATH)\regfree.obj: regfree.c
!include ..\makelib.b32