
Update the Makefiles and includes for the new paths. Note that there hasn't been no separation of the Makefiles yet, and make is jumping all over the place. That will be taken care shortly. But for now, make should work. It was tested with linux and linux-dri. Linux-cell and linux-llvm might require some minor tweaks.
17 lines
513 B
Plaintext
17 lines
513 B
Plaintext
# Configuration for Linux fbdev interface
|
|
|
|
include $(TOP)/configs/linux
|
|
|
|
CONFIG_NAME = linux-fbdev
|
|
|
|
CFLAGS = -O3 -ffast-math -ansi -pedantic -fPIC -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DPTHREADS -DUSE_GLFBDEV_DRIVER
|
|
|
|
SRC_DIRS = gallium mesa glu glut/fbdev
|
|
DRIVER_DIRS = fbdev osmesa
|
|
PROGRAM_DIRS = fbdev demos redbook samples
|
|
|
|
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
|
|
|