blob: 6b8f7c8cbdd4a707593ffda63ad076a2db3312bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
MHMAKESLNFILE=mhmake.sln
.PHONY: all mhmake_dbg mhmake cleanthis
all: debug\mhmake_dbg.exe release\mhmake.exe
DEPS=$(wildcard src\*)
debug\mhmake_dbg.exe: $(DEPS)
vcbuild $(MHMAKESLNFILE) "Debug|Win32"
release\mhmake.exe: $(DEPS)
vcbuild $(MHMAKESLNFILE) "Release|Win32"
clean: cleanthis
cleanthis:
del -e Debug
del -e Release
|