diff options
author | marha <marha@users.sourceforge.net> | 2010-11-19 12:10:26 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-11-19 12:10:26 +0000 |
commit | 111cb82886d25b0b7faa526ce411cc8ef02235a6 (patch) | |
tree | 5d3adf48380b9c741902483f621806d7b75dc4e1 /tools/mhmake/makefile | |
parent | 8fd6c61557d06a2434cf0e296df38f218ba2c186 (diff) | |
download | vcxsrv-111cb82886d25b0b7faa526ce411cc8ef02235a6.tar.gz vcxsrv-111cb82886d25b0b7faa526ce411cc8ef02235a6.tar.bz2 vcxsrv-111cb82886d25b0b7faa526ce411cc8ef02235a6.zip |
Merged tools from trunk into released. This is to keep track of the original versions of tools
Diffstat (limited to 'tools/mhmake/makefile')
-rw-r--r-- | tools/mhmake/makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/mhmake/makefile b/tools/mhmake/makefile new file mode 100644 index 000000000..7efb03252 --- /dev/null +++ b/tools/mhmake/makefile @@ -0,0 +1,33 @@ +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
|