]> Dogcows Code - chaz/rasterize/blobdiff - Makefile
import project 3 files; added blending
[chaz/rasterize] / Makefile
index 4a5844d8aa7df6a6e4a26dc39126b8aaa99fb6d3..bbcd2f6b716cfa5a2db9dbb4bfb72f60d23ec5a5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 
 PROJECT = rasterize
-IUSE    = DEPTH_TEST EXTRA_INLINE SMOOTH_COLOR
+IUSE    = BACKFACE_CULLING BLENDING DEPTH_TEST EXTRA_INLINE CALC_NORMALS LIGHTING=3 SMOOTH_COLOR
 
 VIEWER = feh
 
@@ -9,7 +9,7 @@ CFLAGS  = -std=c99 -O2 -g -pg
 CPPFLAGS= -MMD $(IUSE:%=-D%)
 LDLIBS  = -lm
 
-SRCS    = main.c common.c list.c model.c raster.c rbtree.c scene.c
+SRCS    = main.c array.c common.c list.c model.c raster.c rbtree.c scene.c
 OBJS   = $(SRCS:%.c=%.o)
 DEPS   = $(OBJS:%.o=%.d)
 
@@ -24,6 +24,9 @@ clean:
 distclean: clean
        rm -f tags gmon.out
 
+wipeout: distclean
+       rm -rf *.ppm *.bmp *.avi frames .*.raw .*.obj
+
 dist:
        git archive HEAD --prefix=$(PROJECT)/ --output=$(PROJECT).zip
 
This page took 0.017838 seconds and 4 git commands to generate.