Update of /cvsroot/wxdevcenter/wxDevCenter
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10580
Modified Files:
GNUmakefile
Log Message:
Begin of command manager.
Index: GNUmakefile
===================================================================
RCS file: /cvsroot/wxdevcenter/wxDevCenter/GNUmakefile,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** GNUmakefile 23 Aug 2005 17:03:14 -0000 1.9
--- GNUmakefile 28 Aug 2005 15:57:10 -0000 1.10
***************
*** 74,77 ****
--- 74,78 ----
./build/$(BUILD)/wxDevCenterLib_Application.o \
./build/$(BUILD)/wxDevCenterLib_ArtProvider.o \
+ ./build/$(BUILD)/wxDevCenterLib_Command.o \
./build/$(BUILD)/wxDevCenterLib_Config.o \
./build/$(BUILD)/wxDevCenterLib_DocManager.o \
***************
*** 172,176 ****
install: all install_wxDevCenterLib install_wxDevCenter
$(INSTALL) -d $(prefix)/include
! for f in wxDevCenter.h wxDevCenterPlugin.h wxDevCenter/AboutBox.h wxDevCenter/Application.h wxDevCenter/ArtProvider.h wxDevCenter/Config.h wxDevCenter/DocView.h wxDevCenter/Element.h wxDevCenter/FileSystem.h wxDevCenter/FileSystemCtrl.h wxDevCenter/FileSystemListCtrl.h wxDevCenter/FileSystemTreeCtrl.h wxDevCenter/FileSystemStandard.h wxDevCenter/FileTools.h wxDevCenter/Frame.h wxDevCenter/language.h wxDevCenter/MainFrame.h wxDevCenter/Manager.h wxDevCenter/MDIFrame.h wxDevCenter/Plugin.h wxDevCenter/Project.h wxDevCenter/setup.h wxDevCenter/StatusBar.h wxDevCenter/WorkBar.h wxDevCenter/unix/Config.h wxDevCenter/unix/FileSystemStandard.h; do \
if test ! -d $(prefix)/include/`dirname $$f` ; then \
$(INSTALL) -d $(prefix)/include/`dirname $$f`; \
--- 173,177 ----
install: all install_wxDevCenterLib install_wxDevCenter
$(INSTALL) -d $(prefix)/include
! for f in wxDevCenter.h wxDevCenterPlugin.h wxDevCenter/AboutBox.h wxDevCenter/Application.h wxDevCenter/ArtProvider.h wxDevCenter/Command.h wxDevCenter/Config.h wxDevCenter/DocView.h wxDevCenter/Element.h wxDevCenter/FileSystem.h wxDevCenter/FileSystemCtrl.h wxDevCenter/FileSystemListCtrl.h wxDevCenter/FileSystemTreeCtrl.h wxDevCenter/FileSystemStandard.h wxDevCenter/FileTools.h wxDevCenter/Frame.h wxDevCenter/language.h wxDevCenter/MainFrame.h wxDevCenter/Manager.h wxDevCenter/MDIFrame.h wxDevCenter/Plugin.h wxDevCenter/Project.h wxDevCenter/setup.h wxDevCenter/StatusBar.h wxDevCenter/WorkBar.h wxDevCenter/unix/Config.h wxDevCenter/unix/FileSystemStandard.h; do \
if test ! -d $(prefix)/include/`dirname $$f` ; then \
$(INSTALL) -d $(prefix)/include/`dirname $$f`; \
***************
*** 235,238 ****
--- 236,242 ----
$(CXX) -c -o $@ $(WXDEVCENTERLIB_CXXFLAGS) $(CPPDEPS) $<
+ ./build/$(BUILD)/wxDevCenterLib_Command.o: ./src/Command.cpp
+ $(CXX) -c -o $@ $(WXDEVCENTERLIB_CXXFLAGS) $(CPPDEPS) $<
+
./build/$(BUILD)/wxDevCenterLib_Config.o: ./src/Config.cpp
$(CXX) -c -o $@ $(WXDEVCENTERLIB_CXXFLAGS) $(CPPDEPS) $<
|