5983fae5178e1175cd37492efe3525d8bbe41155
[feisty_meow.git] / nucleus / tools / simple_utilities / makefile
1 CONSOLE_MODE = t
2
3 include cpp/variables.def
4
5 PROJECT = simplistic_utils
6 TYPE = application
7 TARGETS = create_guid.exe playsound.exe short_path.exe sleep_ms.exe \
8   zap_process.exe 
9 #run_as_service.exe 
10 ifeq "$(OMIT_VERSIONS)" ""
11   SOURCE += simple_utils_version.rc
12 endif
13 DEFINITIONS += __BUILD_STATIC_APPLICATION__
14 UNDEFINITIONS += ENABLE_MEMORY_HOOK ENABLE_CALLSTACK_TRACKING
15 ifeq "$(COMPILER)" "VISUAL_CPP"
16   # static C runtime support...
17 #hmmm: resurrect this as a particular build type, so makefiles don't need to know this...
18   COMPILER_FLAGS += -MT
19   LIBS_USED += netapi32.lib
20   ifeq "$(DEBUG)" ""
21     LIBS_USED += libcmt.lib
22   else
23     LIBS_USED += libcmtd.lib
24   endif
25 endif
26
27 include cpp/rules.def
28