diff options
author | Brian Paul <[email protected]> | 2006-07-31 14:24:21 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-07-31 14:24:21 +0000 |
commit | fe3242f00a44542dc3a062de38fbe70324aaa9e7 (patch) | |
tree | 304065309b3d6059d3c74f545d917de196216d99 /src/glut/fbdev/Makefile | |
parent | e8947a5fa020a24e7e07318f1ea9d85467d7d9e6 (diff) |
GLUT on fbdev driver. Sean D'Epagnier
Diffstat (limited to 'src/glut/fbdev/Makefile')
-rw-r--r-- | src/glut/fbdev/Makefile | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/glut/fbdev/Makefile b/src/glut/fbdev/Makefile new file mode 100644 index 00000000000..4c2b410d7bc --- /dev/null +++ b/src/glut/fbdev/Makefile @@ -0,0 +1,78 @@ +# subset glut + +TOP = ../../.. +include $(TOP)/configs/current + +GLX_SHARED = $(TOP)/src/glut/glx +SHAPES = $(TOP)/src/glut/mini + +GLUT_MAJOR = 3 +GLUT_MINOR = 7 +GLUT_TINY = 1 + +INCLUDES = -I$(TOP)/include -I$(GLX_SHARED) + +CORE_SOURCES = \ + glut_fbdev.c + +GLX_SHARED_SOURCES = \ + $(GLX_SHARED)/glut_8x13.c \ + $(GLX_SHARED)/glut_9x15.c \ + $(GLX_SHARED)/glut_bwidth.c \ + $(GLX_SHARED)/glut_bitmap.c \ + $(GLX_SHARED)/glut_hel10.c \ + $(GLX_SHARED)/glut_hel12.c \ + $(GLX_SHARED)/glut_hel18.c \ + $(GLX_SHARED)/glut_tr10.c \ + $(GLX_SHARED)/glut_tr24.c \ + $(GLX_SHARED)/glut_mroman.c \ + $(GLX_SHARED)/glut_roman.c \ + $(GLX_SHARED)/glut_swidth.c \ + $(GLX_SHARED)/glut_stroke.c \ + $(TOP)/src/glut/mini/models.c \ + $(GLX_SHARED)/glut_teapot.c + +SOURCES = $(CORE_SOURCES) $(GLX_SHARED_SOURCES) + +OBJECTS = $(SOURCES:.c=.o) + + +##### RULES ##### + +.c.o: + $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ + +.S.o: + $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ + + +##### TARGETS ##### + +default: depend $(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME) + + +# Make the library +$(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME): depend $(OBJECTS) + $(TOP)/bin/mklib -o $(GLUT_LIB) -linker '$(CC)' \ + -major $(GLUT_MAJOR) -minor $(GLUT_MINOR) -patch $(GLUT_TINY) \ + $(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) + touch depend + $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(SOURCES) > /dev/null + +# Emacs tags +tags: + etags `find . -name \*.[ch]` `find ../include` + + +# Remove .o and backup files +clean: depend + -rm -f depend + -rm -f *.o *~ *.o *~ *.so libglut.so.3.7 + +include depend |