mirror of
https://github.com/reactos/reactos.git
synced 2026-09-13 21:29:18 +08:00
fix most of ReactOS to build with -Wall -Werror by default svn path=/trunk/; revision=6645
24 lines
360 B
Makefile
24 lines
360 B
Makefile
# $Id: makefile,v 1.5 2003/11/14 17:13:22 weiden Exp $
|
|
|
|
PATH_TO_TOP = ../../..
|
|
|
|
TARGET_NORC = yes
|
|
|
|
TARGET_TYPE = program
|
|
|
|
TARGET_APPTYPE = console
|
|
|
|
TARGET_NAME = partinfo
|
|
|
|
TARGET_CFLAGS = -Wall -Werror -Wno-format
|
|
|
|
TARGET_SDKLIBS = ntdll.a kernel32.a
|
|
|
|
TARGET_OBJECTS = $(TARGET_NAME).o
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|