diff options
Diffstat (limited to 'nx-X11/extras/Mesa_6.4.2/progs/fbdev/Makefile')
-rw-r--r-- | nx-X11/extras/Mesa_6.4.2/progs/fbdev/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/nx-X11/extras/Mesa_6.4.2/progs/fbdev/Makefile b/nx-X11/extras/Mesa_6.4.2/progs/fbdev/Makefile new file mode 100644 index 000000000..0a0c77906 --- /dev/null +++ b/nx-X11/extras/Mesa_6.4.2/progs/fbdev/Makefile @@ -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 |