diff options
author | marha <marha@users.sourceforge.net> | 2010-11-19 12:14:18 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-11-19 12:14:18 +0000 |
commit | 6be86147f292b3178413bc644853ad80b620042e (patch) | |
tree | d972cbd73289e9b6e9574c5fd65c6830f67861c6 /tools/mhmake/makefile | |
parent | 111cb82886d25b0b7faa526ce411cc8ef02235a6 (diff) | |
download | vcxsrv-6be86147f292b3178413bc644853ad80b620042e.tar.gz vcxsrv-6be86147f292b3178413bc644853ad80b620042e.tar.bz2 vcxsrv-6be86147f292b3178413bc644853ad80b620042e.zip |
Reintegrate tools from trunk
Diffstat (limited to 'tools/mhmake/makefile')
-rw-r--r-- | tools/mhmake/makefile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/tools/mhmake/makefile b/tools/mhmake/makefile deleted file mode 100644 index 7efb03252..000000000 --- a/tools/mhmake/makefile +++ /dev/null @@ -1,33 +0,0 @@ -ifneq ($(BASEAUTOMAK),makefile)
-ifneq ($(BASEAUTOMAK),linux)
-$(error Please specify BASEAUTOMAK=makefile or BASEAUTOMAK=linux on the command-line or in the environment)
-endif
-endif
-ifneq ($(CONFIG),LINESIM)
-$(error Please specify CONFIG=LINESIM on the command-line or in the environment)
-endif
-NOAUTOINCLIBS:=1
-
-ifdef VS2008
-MHMAKESLNFILE=mhmake.sln
-else
-MHMAKESLNFILE=mhmakevc6.sln
-endif
-
-.PHONY: all mhmake_dbg mhmake cleanthis
-
-all: debug\mhmake_dbg.exe release\mhmake.exe
-
-DEPS=$(wildcard src\*)
-
-debug\mhmake_dbg.exe: $(DEPS)
- devenv.com $(MHMAKESLNFILE) /build Debug
-
-release\mhmake.exe: $(DEPS)
- devenv.com $(MHMAKESLNFILE) /build Release
-
-clean: cleanthis
-
-cleanthis:
- del -e Debug
- del -e Release
|