From: Keith Whitwell Date: Fri, 29 Apr 2005 15:36:38 +0000 (+0000) Subject: new file X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c19069182ff5919ef2322d70e007a33c87d2b93;p=mesa.git new file --- diff --git a/progs/fbdev/Makefile b/progs/fbdev/Makefile new file mode 100644 index 00000000000..0a0c77906f7 --- /dev/null +++ b/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