mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
23 lines
357 B
Makefile
23 lines
357 B
Makefile
|
# $Id: makefile,v 1.1 2004/10/21 04:48:44 sedwards Exp $
|
||
|
PATH_TO_TOP = ../../../reactos
|
||
|
|
||
|
TARGET_NORC = yes
|
||
|
|
||
|
TARGET_TYPE = program
|
||
|
|
||
|
TARGET_APPTYPE = console
|
||
|
|
||
|
TARGET_NAME = atomtest
|
||
|
|
||
|
TARGET_SDKLIBS = ntdll.a kernel32.a
|
||
|
|
||
|
TARGET_OBJECTS = $(TARGET_NAME).o
|
||
|
|
||
|
TARGET_CFLAGS = -Wall -Werror
|
||
|
|
||
|
include $(PATH_TO_TOP)/rules.mak
|
||
|
|
||
|
include $(TOOLS_PATH)/helper.mk
|
||
|
|
||
|
# EOF
|