mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 02:56:09 +00:00
30 lines
483 B
Makefile
30 lines
483 B
Makefile
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = dynlink
|
|
|
|
TARGET_NORC = yes
|
|
|
|
TARGET_NAME = opengl32
|
|
|
|
# -fno-builtin
|
|
TARGET_CFLAGS = -D__USE_W32API
|
|
|
|
# require os code to explicitly request A/W version of structs/functions
|
|
TARGET_CFLAGS += -D_DISABLE_TIDENTS -Wall -Werror
|
|
|
|
TARGET_LFLAGS =
|
|
|
|
TARGET_SDKLIBS = opengl32.a
|
|
|
|
TARGET_OBJECTS = \
|
|
opengl32.o stubs.o
|
|
|
|
DEP_OBJECTS = $(TARGET_OBJECTS)
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
include $(TOOLS_PATH)/depend.mk
|
|
|
|
# EOF
|