initial commit of this kluge

This commit is contained in:
Tonton
2018-11-10 11:31:31 +01:00
commit 63611af4f8
5 changed files with 528 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
#############################################
# 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
#############################################