diff options
author | Keith Whitwell <[email protected]> | 2005-04-29 15:36:38 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-04-29 15:36:38 +0000 |
commit | 2c19069182ff5919ef2322d70e007a33c87d2b93 (patch) | |
tree | 42e4b5a83f9793dca010fd56c0ab2cf89a1c5888 /progs | |
parent | 15e75e00c7dc79c28aeac84891bcf18ffc77cff9 (diff) |
new file
Diffstat (limited to 'progs')
-rw-r--r-- | progs/fbdev/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
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 |