define new APP_CC configuration variable for building apps/demos/tests
[mesa.git] / progs / samples / Makefile
index 36de6e28cf20fe2ee28680c7733261fdeccb500d..25ce14740a844535577aa127617712ea7ebf25dd 100644 (file)
@@ -5,7 +5,7 @@ include $(TOP)/configs/current
 
 INCDIR = $(TOP)/include
 
-LIB_DEP = $(LIB_DIR)/$(GL_LIB_NAME) $(LIB_DIR)/$(GLU_LIB_NAME) $(LIB_DIR)/$(GLUT_LIB_NAME)
+LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) $(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME)
 
 PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \
        font line logo nurb olympic overlay point prim quad select \
@@ -18,8 +18,7 @@ PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \
 .SUFFIXES: .c
 
 .c: $(LIB_DEP)
-       $(CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@
-
+       $(APP_CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@
 
 
 ##### TARGETS #####
@@ -27,6 +26,23 @@ PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \
 default: $(PROGS)
 
 
+sphere: sphere.o readtex.o
+       $(APP_CC) -I$(INCDIR) $(CFLAGS) sphere.o readtex.o $(APP_LIB_DEPS) -o $@
+
+sphere.o: sphere.c readtex.h
+       $(APP_CC) -c -I$(INCDIR) $(CFLAGS) sphere.c
+
+readtex.c: $(TOP)/progs/util/readtex.c
+       cp $< .
+
+readtex.h: $(TOP)/progs/util/readtex.h
+       cp $< . 
+
+readtex.o: readtex.c readtex.h
+       $(APP_CC) -c -I$(INCDIR) $(CFLAGS) $< -o $@
+
+
 clean:
        -rm -f $(PROGS)
        -rm -f *.o *~
+       -rm -f readtex.c readtex.h