remove empty dir
[reactos.git] / rosapps / notevil / makefile
1 #
2 # ReactOS notevil
3 #
4 # Makefile
5 #
6
7 PATH_TO_TOP = ../../reactos
8
9 TARGET_TYPE = program
10
11 TARGET_APPTYPE = console
12
13 TARGET_NAME = notevil
14
15 TARGET_CFLAGS = -D__USE_W32API #-DUNICODE -D_UNICODE
16
17 TARGET_SDKLIBS = \
18 kernel32.a \
19 user32.a
20
21 TARGET_OBJECTS = $(TARGET_NAME).o
22
23 include $(PATH_TO_TOP)/rules.mak
24
25 include $(TOOLS_PATH)/helper.mk
26
27 $(TARGET_NAME).o: resource.h
28
29 # EOF