diff options
author | pixel <pixel> | 2003-09-08 17:36:56 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-09-08 17:36:56 +0000 |
commit | 40e45d8948a8b5315c83886b5218543cafae0c4a (patch) | |
tree | 122556ea25efe2719de195d0c29f65d943ab8886 /MSVC/Tools/makefile | |
parent | b04ffaf185eb6086ad287f2b93ebf3ecb3a7c5cb (diff) |
Still some changes....
Diffstat (limited to 'MSVC/Tools/makefile')
-rw-r--r-- | MSVC/Tools/makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MSVC/Tools/makefile b/MSVC/Tools/makefile index 10ec37c..5373e4a 100644 --- a/MSVC/Tools/makefile +++ b/MSVC/Tools/makefile @@ -9,6 +9,12 @@ all : cd ..\.. $(MAKE) /F nmakefile all +debugall : + set COMMONTOOLSPATH=$(COMMONTOOLSPATH) + set DEBUG=true + cd ..\.. + $(MAKE) /F nmakefile all + clean : set COMMONTOOLSPATH=$(COMMONTOOLSPATH) cd ..\.. @@ -18,3 +24,9 @@ rebuild: set COMMONTOOLSPATH=$(COMMONTOOLSPATH) cd ..\.. $(MAKE) /f nmakefile clean all + +debugrebuild: + set COMMONTOOLSPATH=$(COMMONTOOLSPATH) + set DEBUG=true + cd ..\.. + $(MAKE) /f nmakefile clean all |