From 640f801441bdb4b0a024e47e2aa3a497f88562d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Tue, 13 Feb 2018 16:41:10 +0100 Subject: [PATCH] Add bounce as a Makefile target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1fc481a..bb29ca1 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CXXLIBS=-lGL -lGLU -lglut # In `TARGET`, list the names of the `main_[stuff].cpp` you'd like to compile # into a `[stuff].bin`. -TARGETS=glut ball +TARGETS=glut ball bounce OBJS=Implicit.o \ common_structures.o \ @@ -39,3 +39,6 @@ _gen/marching_cubes_data.cpp: tools/gen_marching_cubes_conf.py clean: rm -rf $(OBJS) $(TARGETS:=.bin) _gen + +clean_render: + rm -rf render/*.o $(TARGETS:=.bin)