From 02595b28254dbb829fc0a2515e61c0807f2277bc Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 13 Jul 2001 19:08:59 +0000 Subject: [PATCH] renamed main.c to re_main.c to avoid clashes with main.cpp in VPATH git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11018 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/regex/Makefile | 8 ++++---- src/regex/{main.c => re_main.c} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename src/regex/{main.c => re_main.c} (100%) diff --git a/src/regex/Makefile b/src/regex/Makefile index 3882b37864..ce20561fa9 100644 --- a/src/regex/Makefile +++ b/src/regex/Makefile @@ -18,14 +18,14 @@ LIBS= # Internal stuff, should not need changing. OBJPRODN=regcomp.o regexec.o regerror.o regfree.o -OBJS=$(OBJPRODN) split.o debug.o main.o +OBJS=$(OBJPRODN) split.o debug.o re_main.o H=cclass.h cname.h regex2.h utils.h REGSRC=regcomp.c regerror.c regexec.c regfree.c -ALLSRC=$(REGSRC) engine.c debug.c main.c split.c +ALLSRC=$(REGSRC) engine.c debug.c re_main.c split.c # Stuff that matters only if you're trying to lint the package. LINTFLAGS=-I. -Dstatic= -Dconst= -DREDEBUG -LINTC=regcomp.c regexec.c regerror.c regfree.c debug.c main.c +LINTC=regcomp.c regexec.c regerror.c regfree.c debug.c re_main.c JUNKLINT=possible pointer alignment|null effect # arrangements to build forward-reference header files @@ -56,7 +56,7 @@ regcomp.o: cclass.h cname.h regcomp.ih regexec.o: engine.c engine.ih regerror.o: regerror.ih debug.o: debug.ih -main.o: main.ih +re_main.o: re_main.ih # tester re: $(OBJS) diff --git a/src/regex/main.c b/src/regex/re_main.c similarity index 100% rename from src/regex/main.c rename to src/regex/re_main.c -- 2.45.2