first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / core / 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 ifeq "$(OMIT_VERSIONS)" ""
10   SOURCE += simple_utils_version.rc
11 endif
12 DEFINITIONS += __BUILD_STATIC_APPLICATION__
13 UNDEFINITIONS += ENABLE_MEMORY_HOOK ENABLE_CALLSTACK_TRACKING
14 ifeq "$(OP_SYSTEM)" "WIN32"
15   # static C runtime support...
16 #hmmm: resurrect this as a particular build type, so makefiles don't need to know this...
17   COMPILER_FLAGS += -MT
18   LIBS_USED += netapi32.lib
19   ifeq "$(DEBUG)" ""
20     LIBS_USED += libcmt.lib
21   else
22     LIBS_USED += libcmtd.lib
23   endif
24 endif
25
26 include cpp/rules.def
27