Import w32api version 2.5 include files
[reactos.git] / rosapps / hcalc / Makefile
1 #
2 # ReactOS hcalc
3 #
4 # Makefile
5 #
6
7 PATH_TO_TOP = ../../reactos
8
9 TARGET_TYPE = program
10
11 TARGET_APPTYPE = windows
12
13 TARGET_NAME = hcalc
14
15 WINE_MODE = yes
16
17 WINE_RC = $(TARGET_NAME)
18
19 WINE_INCLUDE = ./
20
21 TARGET_CFLAGS = -D__USE_W32API
22
23 TARGET_SDKLIBS = \
24 kernel32.a \
25 user32.a \
26 gdi32.a
27
28 TARGET_OBJECTS = \
29 hcalc.o \
30 input.o
31
32 include $(PATH_TO_TOP)/rules.mak
33
34 include $(TOOLS_PATH)/helper.mk
35
36 # EOF