Removed textedit from top-level sample makefiles
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37329 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -23,10 +23,11 @@ BCCDIR = $(MAKEDIR)\..
|
||||
|
||||
MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
|
||||
-DCXXFLAGS="$(CXXFLAGS)" -DCPPFLAGS="$(CPPFLAGS)" -DLDFLAGS="$(LDFLAGS)" \
|
||||
-DSHARED="$(SHARED)" -DWXUNIV="$(WXUNIV)" -DUNICODE="$(UNICODE)" \
|
||||
-DMSLU="$(MSLU)" -DBUILD="$(BUILD)" -DDEBUG_INFO="$(DEBUG_INFO)" \
|
||||
-DDEBUG_FLAG="$(DEBUG_FLAG)" -DMONOLITHIC="$(MONOLITHIC)" \
|
||||
-DUSE_GUI="$(USE_GUI)" -DUSE_HTML="$(USE_HTML)" -DUSE_XRC="$(USE_XRC)" \
|
||||
-DCPP="$(CPP)" -DSHARED="$(SHARED)" -DWXUNIV="$(WXUNIV)" \
|
||||
-DUNICODE="$(UNICODE)" -DMSLU="$(MSLU)" -DBUILD="$(BUILD)" \
|
||||
-DDEBUG_INFO="$(DEBUG_INFO)" -DDEBUG_FLAG="$(DEBUG_FLAG)" \
|
||||
-DMONOLITHIC="$(MONOLITHIC)" -DUSE_GUI="$(USE_GUI)" \
|
||||
-DUSE_HTML="$(USE_HTML)" -DUSE_XRC="$(USE_XRC)" \
|
||||
-DUSE_OPENGL="$(USE_OPENGL)" -DUSE_ODBC="$(USE_ODBC)" -DUSE_QA="$(USE_QA)" \
|
||||
-DUSE_EXCEPTIONS="$(USE_EXCEPTIONS)" -DUSE_RTTI="$(USE_RTTI)" \
|
||||
-DUSE_THREADS="$(USE_THREADS)" -DOFFICIAL_BUILD="$(OFFICIAL_BUILD)" \
|
||||
@@ -41,7 +42,7 @@ MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
|
||||
|
||||
### Targets: ###
|
||||
|
||||
all: access artprov calendar caret checklst config console controls db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer memcheck menu mfc minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render richedit rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard
|
||||
all: access artprov calendar caret checklst config console controls db dialogs dialup display dnd docview docvwmdi dragimag drawing dynamic erase event exec except font grid help htlbox html image internat ipc joytest keyboard layout listbox listctrl mdi mediaplayer memcheck menu minifram minimal mobile multimon nativdlg notebook oleauto opengl ownerdrw png popup printing propsize regtest render rotate sashtest scroll scrollsub shaped sockets sound splash splitter statbar taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard mfc
|
||||
|
||||
clean:
|
||||
-if exist .\*.obj del .\*.obj
|
||||
@@ -203,10 +204,6 @@ clean:
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>menu.bat
|
||||
call menu.bat
|
||||
@del menu.bat
|
||||
@echo cd mfc >mfc.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>mfc.bat
|
||||
call mfc.bat
|
||||
@del mfc.bat
|
||||
@echo cd minifram >minifram.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>minifram.bat
|
||||
call minifram.bat
|
||||
@@ -267,10 +264,6 @@ clean:
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>render.bat
|
||||
call render.bat
|
||||
@del render.bat
|
||||
@echo cd richedit >richedit.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>richedit.bat
|
||||
call richedit.bat
|
||||
@del richedit.bat
|
||||
@echo cd rotate >rotate.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>rotate.bat
|
||||
call rotate.bat
|
||||
@@ -351,6 +344,10 @@ clean:
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>wizard.bat
|
||||
call wizard.bat
|
||||
@del wizard.bat
|
||||
@echo cd mfc >mfc.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>mfc.bat
|
||||
call mfc.bat
|
||||
@del mfc.bat
|
||||
|
||||
access:
|
||||
@echo cd access >access.bat
|
||||
@@ -586,12 +583,6 @@ menu:
|
||||
call menu.bat
|
||||
@del menu.bat
|
||||
|
||||
mfc:
|
||||
@echo cd mfc >mfc.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>mfc.bat
|
||||
call mfc.bat
|
||||
@del mfc.bat
|
||||
|
||||
minifram:
|
||||
@echo cd minifram >minifram.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>minifram.bat
|
||||
@@ -682,12 +673,6 @@ render:
|
||||
call render.bat
|
||||
@del render.bat
|
||||
|
||||
richedit:
|
||||
@echo cd richedit >richedit.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>richedit.bat
|
||||
call richedit.bat
|
||||
@del richedit.bat
|
||||
|
||||
rotate:
|
||||
@echo cd rotate >rotate.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>rotate.bat
|
||||
@@ -808,3 +793,9 @@ wizard:
|
||||
call wizard.bat
|
||||
@del wizard.bat
|
||||
|
||||
mfc:
|
||||
@echo cd mfc >mfc.bat
|
||||
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>mfc.bat
|
||||
call mfc.bat
|
||||
@del mfc.bat
|
||||
|
||||
|
Reference in New Issue
Block a user