2004-06-02 02:27:04 +00:00
|
|
|
# $Id: makefile,v 1.2 2004/06/02 02:27:04 royce Exp $
|
2002-08-29 20:28:13 +00:00
|
|
|
#
|
|
|
|
# ReactOS zoomin
|
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
#
|
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
PATH_TO_TOP = ../../../reactos
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
TARGET_TYPE = program
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
TARGET_APPTYPE = windows
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
TARGET_NAME = zoomin
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
TARGET_CFLAGS = -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 -D__USE_W32API
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
TARGET_SDKLIBS = kernel32.a gdi32.a user32.a
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
TARGET_OBJECTS = framewnd.o main.o
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
include $(TOOLS_PATH)/helper.mk
|
2002-08-29 20:28:13 +00:00
|
|
|
|
2004-06-02 02:27:04 +00:00
|
|
|
# EOF
|