Mainly standardisation of makefiles, now support make install rules and use ros heade...
[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 = console
12
13 TARGET_NAME = hcalc
14
15 WINE_MODE = yes
16
17 WINE_RC = $(TARGET_NAME)
18
19 WINE_INCLUDE = ./
20
21 TARGET_SDKLIBS = \
22 kernel32.a \
23 user32.a \
24 gdi32.a
25
26 TARGET_OBJECTS = \
27 hcalc.o \
28 input.o
29
30 include $(PATH_TO_TOP)/rules.mak
31
32 include $(TOOLS_PATH)/helper.mk
33
34 # EOF