corrected object file extension in the makefiles

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-07-13 20:40:31 +00:00
parent 1a6cb56fb5
commit ec2182c646
3 changed files with 12 additions and 12 deletions

View File

@@ -2,10 +2,10 @@
LIBTARGET=$(WXDIR)\lib\regex.lib LIBTARGET=$(WXDIR)\lib\regex.lib
OBJECTS= \ OBJECTS= \
regcomp.o \ regcomp.obj \
regexec.o \ regexec.obj \
regerror.o \ regerror.obj \
regfree.o regfree.obj
# Pull in standard variable definitions # Pull in standard variable definitions

View File

@@ -7,10 +7,10 @@ LIBTARGET=$(WXDIR)\lib\regexd.lib
!endif !endif
OBJECTS= \ OBJECTS= \
regcomp.o \ regcomp.obj \
regexec.o \ regexec.obj \
regerror.o \ regerror.obj \
regfree.o regfree.obj
# Pull in standard variable definitions # Pull in standard variable definitions

View File

@@ -16,10 +16,10 @@ WXLIB = $(WXDIR)\lib
LIBTARGET = $(WXLIB)\regex.lib LIBTARGET = $(WXLIB)\regex.lib
OBJECTS= & OBJECTS= &
regcomp.o & regcomp.obj &
regexec.o & regexec.obj &
regerror.o & regerror.obj &
regfree.o regfree.obj
all: $(OBJECTS) $(LIBTARGET) all: $(OBJECTS) $(LIBTARGET)