16 lines
392 B
Makefile
16 lines
392 B
Makefile
|
|
#############################################
|
|
# 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
|
|
|
|
#############################################
|