summaryrefslogtreecommitdiff
path: root/src/glut/fbdev/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/glut/fbdev/Makefile')
-rw-r--r--src/glut/fbdev/Makefile78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/glut/fbdev/Makefile b/src/glut/fbdev/Makefile
new file mode 100644
index 0000000..4c2b410
--- /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