Merge 15268:15329 from trunk
[reactos.git] / rosapps / devutils / zoomin / makefile
1 # $Id: makefile,v 1.2 2004/06/02 02:27:04 royce Exp $
2 #
3 # ReactOS zoomin
4 #
5 # Makefile
6 #
7 # Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #
23
24 PATH_TO_TOP = ../../../reactos
25
26 TARGET_TYPE = program
27
28 TARGET_APPTYPE = windows
29
30 TARGET_NAME = zoomin
31
32 TARGET_CFLAGS = -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 -D__USE_W32API
33
34 TARGET_SDKLIBS = kernel32.a gdi32.a user32.a
35
36 TARGET_OBJECTS = framewnd.o main.o
37
38 include $(PATH_TO_TOP)/rules.mak
39
40 include $(TOOLS_PATH)/helper.mk
41
42 # EOF