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
OBJECTS= \
regcomp.o \
regexec.o \
regerror.o \
regfree.o
regcomp.obj \
regexec.obj \
regerror.obj \
regfree.obj
# Pull in standard variable definitions

View File

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

View File

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