30 lines
509 B
Makefile
30 lines
509 B
Makefile
|
PROJNAME = iup
|
||
|
LIBNAME = iupgl
|
||
|
OPT = YES
|
||
|
|
||
|
ifdef DBG
|
||
|
DEFINES += IUP_ASSERT
|
||
|
endif
|
||
|
|
||
|
INCLUDES = ../include ../src
|
||
|
LDIR = ../lib/$(TEC_UNAME)
|
||
|
LIBS = iup
|
||
|
|
||
|
USE_OPENGL = Yes
|
||
|
SRC = iup_glcanvas.c
|
||
|
|
||
|
ifneq ($(findstring Win, $(TEC_SYSNAME)), )
|
||
|
SRC += iup_glcanvas_win.c
|
||
|
else ifneq ($(findstring Haiku, $(TEC_SYSNAME)), )
|
||
|
SRC += iup_glcanvas_haiku.c
|
||
|
else
|
||
|
SRC += iup_glcanvas_x.c
|
||
|
USE_X11 = Yes
|
||
|
endif
|
||
|
|
||
|
ifneq ($(findstring MacOS, $(TEC_UNAME)), )
|
||
|
ifneq ($(TEC_SYSMINOR), 4)
|
||
|
BUILD_DYLIB=Yes
|
||
|
endif
|
||
|
endif
|