19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
# Configuration for Linux fbdev interface
|
|
|
|
include $(TOP)/configs/linux
|
|
|
|
CONFIG_NAME = linux-fbdev
|
|
|
|
CFLAGS += -DUSE_GLFBDEV_DRIVER
|
|
|
|
# Work around aliasing bugs - developers should comment this out
|
|
CFLAGS += -fno-strict-aliasing
|
|
|
|
SRC_DIRS += glut/fbdev
|
|
DRIVER_DIRS = fbdev osmesa
|
|
|
|
GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lm -lpthread
|
|
OSMESA_LIB_DEPS = -lm -lpthread
|
|
GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lgpm -lm
|
|
|