Add bounce as a Makefile target
This commit is contained in:
parent
dc213cdeeb
commit
640f801441
1 changed files with 4 additions and 1 deletions
5
Makefile
5
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)
|
||||
|
|
Loading…
Reference in a new issue