diff options
author | Sean D'Epagnier <geckosenator@freedesktop.org> | 2006-08-05 08:24:29 +0000 |
---|---|---|
committer | Sean D'Epagnier <geckosenator@freedesktop.org> | 2006-08-05 08:24:29 +0000 |
commit | 288d4b6ebed85e0d3bf6d3aecf75f2627b70402d (patch) | |
tree | 7b4af5a5ba6b7c6c8fa9541327c89eb29d9201d7 /src/glut/fbdev/Makefile | |
parent | 0606ad45f65dacf1fe9c4893f739915178345d8b (diff) |
Modularized code into multiple files.
Added gamemode stubs, iconify support, joystick stubs.
Fixed color index mode, added 8 bit alpha blending, enabled cmaps even
with 15, 16, 24, and 32 depths as some fbdev drivers need this.
Fixed compiling with -ansi
Using SIGIO for keyboard input, so that vt switching is enabled even
if the program is locked.
Fixed numerous small bugs.
Diffstat (limited to 'src/glut/fbdev/Makefile')
-rw-r--r-- | src/glut/fbdev/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/glut/fbdev/Makefile b/src/glut/fbdev/Makefile index 4c2b410d7b..39a48f3634 100644 --- a/src/glut/fbdev/Makefile +++ b/src/glut/fbdev/Makefile @@ -13,7 +13,16 @@ GLUT_TINY = 1 INCLUDES = -I$(TOP)/include -I$(GLX_SHARED) CORE_SOURCES = \ - glut_fbdev.c + fbdev.c \ + colormap.c \ + cursor.c \ + menu.c \ + overlay.c \ + ext.c \ + state.c \ + input.c \ + callback.c \ + gamemode.c GLX_SHARED_SOURCES = \ $(GLX_SHARED)/glut_8x13.c \ @@ -58,7 +67,6 @@ $(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME): depend $(OBJECTS) $(GLUT_LIB_DEPS) -install $(TOP)/$(LIB_DIR) \ $(MKLIB_OPTIONS) $(OBJECTS) - # Run 'make -f Makefile.solo dep' to update the dependencies if you change # what's included by any source file. depend: $(SOURCES) |