reactos/rosapps/taskmgr/makefile
Steven Edwards b63bf89d46 Updated license header to reflect relicense by Brian Palmer.
Converted Comments from C++ style to C.
(WINE is going to adopt our taskmgr soon)

svn path=/trunk/; revision=6812
2003-11-29 02:31:24 +00:00

59 lines
740 B
Makefile

#
# ReactOS Task Manager
#
# Makefile
#
PATH_TO_TOP = ../../reactos
TARGET_TYPE = program
TARGET_APPTYPE = windows
TARGET_NAME = taskmgr
TARGET_CFLAGS = -DDBG -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501 \
-fexceptions -Wall -D__USE_W32API
TARGET_RCFLAGS =
WINE_MODE = yes
WINE_RC = $(TARGET_NAME)
WINE_INCLUDE = ./
TARGET_SDKLIBS = \
kernel32.a \
user32.a \
gdi32.a \
comctl32.a
TARGET_GCCLIBS = stdc++
TARGET_OBJECTS = \
about.o \
affinity.o \
applpage.o \
column.o \
debug.o \
endproc.o \
font.o \
graph.o \
optnmenu.o \
perfdata.o \
perfpage.o \
priority.o \
procpage.o \
proclist.o \
run.o \
trayicon.o \
taskmgr.o \
graphctl.o
include $(PATH_TO_TOP)/rules.mak
include $(TOOLS_PATH)/helper.mk
# EOF