mirror of
https://github.com/reactos/reactos.git
synced 2026-09-13 13:18:33 +08:00
40 lines
636 B
Makefile
40 lines
636 B
Makefile
# $Id: makefile,v 1.1 2004/01/09 13:18:37 fireball Exp $
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NAME = kbdse
|
|
|
|
TARGET_BASE = 0x5500000
|
|
|
|
TARGET_CFLAGS = -I$(PATH_TO_TOP)/ntoskrnl/include
|
|
|
|
# require os code to explicitly request A/W version of structs/functions
|
|
TARGET_CFLAGS += -D_DISABLE_TIDENTS
|
|
|
|
TARGET_LFLAGS = -nostartfiles -nostdlib
|
|
|
|
TARGET_SDKLIBS =
|
|
|
|
TARGET_GCCLIBS = gcc
|
|
|
|
TARGET_PCH =
|
|
|
|
TARGET_CLEAN =
|
|
|
|
TARGET_OBJECTS = kbdse.o
|
|
|
|
DEP_OBJECTS = $(TARGET_OBJECTS)
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
include $(TOOLS_PATH)/depend.mk
|
|
|
|
%/TAGS:
|
|
etags -o $(@D)/TAGS $(@D)/\*.c
|
|
|
|
etags: ./TAGS
|