mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
0f711c642b
I have changed the makefile so it is compatible with ReactOS, and compiles just by running 'make'. There are some warnings also, but I didn't have time to fix them. svn path=/trunk/; revision=9490
24 lines
295 B
Makefile
24 lines
295 B
Makefile
#
|
|
|
|
PATH_TO_TOP = ../../../reactos
|
|
|
|
TARGET_NORC = yes
|
|
|
|
TARGET_TYPE = program
|
|
|
|
TARGET_APPTYPE = console
|
|
|
|
TARGET_NAME = man
|
|
|
|
TARGET_SDKLIBS = ntdll.a
|
|
|
|
TARGET_CFLAGS = -D__USE_W32API -Wall
|
|
|
|
TARGET_OBJECTS = $(TARGET_NAME).o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|