]> Dogcows Code - chaz/rasterize/blobdiff - Makefile
rotate script now more intuitive, maybe
[chaz/rasterize] / Makefile
index b3e118f57f6faadb104bbb4f92ee613f6944f09b..024bb482ab202cc43adbc2ad0baff74d6fb4ac6d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,33 @@
 
-PROJECT = project1
-SRCS    = main.c common.c list.c pixmap.c scene.c tri.c
+PROJECT = project2
+IUSE    = CLIPPING DEPTH_TEST SMOOTH_COLOR \
+                 EXTRA_INLINE NDEBUG RASTER_STATS RENDER_PROGRESS RENDER_TIMER
+
+
+# BACKFACE_CULLING  prevent drawing triangles that are not facing forward
+# CLIPPING          turn on clipping (you really always want this)
+# DEPTH_TEST        enable the z buffer for depth testing
+# EXPORT_BMP        save scene as bitmap (enabled by default)
+# EXPORT_PPM        save scene as a PPM file (also enabled by default)
+# EXTRA_INLINE      allow the compiler to inline even more aggressively
+# LIGHTING          turn the lights on (experimental)
+# NDEBUG            disable assertions and other nonessential checks
+# PRE_NORMALS[=n]   pre-compute mesh normals at scene-loading time;
+#                   set to 1 for per-face normals, 2 for averaged normals,
+#                   or 3 to also enable caching the computed normals
+# RASTER_STATS      print triangle count and optimization savings at the end
+# RENDER_PROGRESS   print progress while drawing the scene
+# RENDER_TIMER      add a timer to see how long the renderer takes
+# SMOOTH_COLOR      interpolate colors smoothly between triangle vertices
 
 VIEWER = feh
 
 CC      = gcc
-CFLAGS  = -std=c99 -O0 -ggdb
-CPPFLAGS= -MMD -DDEBUG
+CFLAGS  = -std=c99 -O2 -g -pg
+CPPFLAGS= -MMD $(IUSE:%=-D%)
 LDLIBS  = -lm
 
+SRCS    = main.c common.c list.c raster.c rbtree.c scene.c
 OBJS   = $(SRCS:%.c=%.o)
 DEPS   = $(OBJS:%.o=%.d)
 
@@ -21,7 +40,10 @@ clean:
        rm -f $(PROJECT) $(OBJS) $(DEPS)
 
 distclean: clean
-       rm -f scene.ppm scene.bmp
+       rm -f tags gmon.out scene.ppm scene.bmp
+
+dist:
+       git archive $(PROJECT) --prefix=$(PROJECT)/ --output=$(PROJECT).zip
 
 run: $(PROJECT)
        ./$< && $(VIEWER) scene.ppm
@@ -30,4 +52,7 @@ debug: $(PROJECT)
        gdb ./$<
 
 -include $(DEPS)
+$(OBJS): Makefile
+
+.PHONY: all clean distclean run debug
 
This page took 0.023907 seconds and 4 git commands to generate.