From ec2182c646313598fa650813211f7e2874bff640 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 13 Jul 2001 20:40:31 +0000 Subject: [PATCH] corrected object file extension in the makefiles git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/regex/makefile.b32 | 8 ++++---- src/regex/makefile.vc | 8 ++++---- src/regex/makefile.wat | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/regex/makefile.b32 b/src/regex/makefile.b32 index 54a6e2cfac..321e2edc98 100644 --- a/src/regex/makefile.b32 +++ b/src/regex/makefile.b32 @@ -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 diff --git a/src/regex/makefile.vc b/src/regex/makefile.vc index 3316aca49d..29f07b5f75 100644 --- a/src/regex/makefile.vc +++ b/src/regex/makefile.vc @@ -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 diff --git a/src/regex/makefile.wat b/src/regex/makefile.wat index 80c81310f6..8f2b74442d 100644 --- a/src/regex/makefile.wat +++ b/src/regex/makefile.wat @@ -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) -- 2.45.2