Incorporate rosapps. 0.3.15 was branched somewhat incorrectly so rosapps is not synce...
[reactos.git] / modules / rosapps / demos / maze / Makefile
1
2 PATH_TO_TOP = ../../../reactos
3
4 TARGET_TYPE = program
5
6 TARGET_APPTYPE = windows
7
8 TARGET_NAME = maze
9
10 TARGET_SDKLIBS = kernel32.a gdi32.a
11
12 TARGET_OBJECTS = maze.o
13
14 TARGET_CFLAGS = -Wall -Werror
15
16 include $(PATH_TO_TOP)/rules.mak
17
18 include $(TOOLS_PATH)/helper.mk
19
20 # Automatic dependency tracking
21 DEP_OBJECTS := $(TARGET_OBJECTS)
22 include $(PATH_TO_TOP)/tools/depend.mk
23
24 # EOF