rename some projects to avoid project name clashes in samples.dsw

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43637 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-11-25 14:22:44 +00:00
parent 77c8787c16
commit 7dc467c500
34 changed files with 1358 additions and 1352 deletions

View File

@@ -37,9 +37,9 @@ WX_CXXFLAGS = `$(WX_CONFIG) --cxxflags`
### Variables: ###
CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
HELP_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
HELP_OBJECTS = \
help_help.o
HTMLHELP_CXXFLAGS = -I. $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
HTMLHELP_OBJECTS = \
htmlhelp_help.o
### Conditionally set variables: ###
@@ -47,7 +47,7 @@ HELP_OBJECTS = \
### Targets: ###
all: help
all: htmlhelp
install: all
@@ -56,13 +56,13 @@ uninstall:
clean:
rm -f ./*.o
rm -f ./*.d
rm -f help
rm -f htmlhelp
help: $(HELP_OBJECTS)
$(CXX) -o $@ $(HELP_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs html,core,base`
htmlhelp: $(HTMLHELP_OBJECTS)
$(CXX) -o $@ $(HTMLHELP_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) --libs html,core,base`
help_help.o: ./help.cpp
$(CXX) -c -o $@ $(HELP_CXXFLAGS) $(CPPDEPS) $<
htmlhelp_help.o: ./help.cpp
$(CXX) -c -o $@ $(HTMLHELP_CXXFLAGS) $(CPPDEPS) $<
.PHONY: all install uninstall clean