X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Frasterize;a=blobdiff_plain;f=Makefile;h=1af0ade59cb4c638ef11c754054011704e3a3e8b;hp=4a5844d8aa7df6a6e4a26dc39126b8aaa99fb6d3;hb=09dd89d10e65029f0be313dd463ba1f43cac2fbb;hpb=143da66e7f625b7f195a115b9740a748ee003534 diff --git a/Makefile b/Makefile index 4a5844d..1af0ade 100644 --- a/Makefile +++ b/Makefile @@ -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