new file
authorKeith Whitwell <keith@tungstengraphics.com>
Fri, 29 Apr 2005 15:36:38 +0000 (15:36 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Fri, 29 Apr 2005 15:36:38 +0000 (15:36 +0000)
progs/fbdev/Makefile [new file with mode: 0644]

diff --git a/progs/fbdev/Makefile b/progs/fbdev/Makefile
new file mode 100644 (file)
index 0000000..0a0c779
--- /dev/null
@@ -0,0 +1,53 @@
+# Makefile for miniglx demo programs
+
+TOP = ../..
+
+include $(TOP)/configs/current
+
+
+SOURCES = glfbdevtest.c
+
+OBJECTS = $(SOURCES:.c=.o)
+
+PROGS = $(SOURCES:%.c=%)
+
+INCLUDES = \
+       -I. \
+       -I$(TOP)/include
+
+
+##### RULES #####
+
+.SUFFIXES:
+.SUFFIXES: .c
+
+.c:
+       $(CC) $(INCLUDES) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@
+
+.c.o:
+       $(CC) -c $(INCLUDES) $(CFLAGS) $< -o $@
+
+.S.o:
+       $(CC) -c $(INCLUDES) $(CFLAGS) $< -o $@
+
+
+##### TARGETS #####
+
+default:  depend $(PROGS)
+
+clean:
+       rm -f $(PROGS)
+       rm -f *.o
+
+
+depend: $(SOURCES)
+       touch depend
+       $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(SOURCES) > /dev/null 
+
+
+# Emacs tags
+tags:
+       etags `find . -name \*.[ch]` `find ../include`
+
+
+include depend