mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
a30a353dcb
- Moved the definition for unicode compiling to the make file. - Wait on the input handle instead to poll it every 40ms. - Use the number of cpus for time calculations. svn path=/trunk/; revision=13067
25 lines
331 B
Makefile
25 lines
331 B
Makefile
#
|
|
# ReactOS Console TaskManager
|
|
#
|
|
# Makefile
|
|
#
|
|
|
|
PATH_TO_TOP = ../../../reactos
|
|
|
|
TARGET_TYPE = program
|
|
|
|
TARGET_APPTYPE = console
|
|
|
|
TARGET_NAME = ctm
|
|
|
|
TARGET_SDKLIBS = epsapi.a ntdll.a
|
|
|
|
TARGET_OBJECTS = $(TARGET_NAME).o
|
|
|
|
TARGET_CFLAGS = -DUNICODE -D_UNICODE
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|