diff options
author | Brian Paul <[email protected]> | 2004-03-26 15:19:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-03-26 15:19:11 +0000 |
commit | de0ee3187c8fffb52327f9a5680a3eafea872276 (patch) | |
tree | 69ca2969c64ddd79910f0783639d4c7bd65df792 /progs/samples | |
parent | a70ad91209b08ebe7122ace6d6656b11d9b04542 (diff) |
New Makefile system
Diffstat (limited to 'progs/samples')
-rw-r--r-- | progs/samples/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/progs/samples/Makefile b/progs/samples/Makefile new file mode 100644 index 00000000000..464492de732 --- /dev/null +++ b/progs/samples/Makefile @@ -0,0 +1,34 @@ +# progs/samples/Makefile + +TOP = ../.. +include $(TOP)/configs/current + +INCDIR = $(TOP)/include + +LIB_DEP = $(LIB_DIR)/$(GL_LIB) $(LIB_DIR)/$(GLU_LIB) $(LIB_DIR)/$(GLUT_LIB) + +PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \ + font line logo nurb oglinfo olympic overlay point prim quad select \ + shape sphere star stencil stretch texture tri wave + + +##### RULES ##### + +.SUFFIXES: +.SUFFIXES: .c + +.c: $(LIB_DEP) + $(CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@ + + + +##### TARGETS ##### + +default: $(PROGS) + +clean: + -rm -f *.o *~ + +realclean: + -rm -f $(PROGS) + -rm -f *.o *~ |