libbubulle/Makefile

16 lines
392 B
Makefile
Raw Normal View History

2018-11-10 11:31:31 +01:00
#############################################
# making the bubulles library
# maybe must be run with gmake
#############################################
OPT = -Wall -g -DDEBUG_LEVEL=1 -DMUST_ABORT
bubulles.o: bubulles.c bubulles.h Makefile
clang $(OPT) -c $<
tbb: tbb.c bubulles.h bubulles.o Makefile
clang $(OPT) $< bubulles.o -o tbb
#############################################