21 lines
455 B
Makefile
21 lines
455 B
Makefile
|
|
#############################################
|
|
# making the bubulles library
|
|
# maybe must be run with gmake on FreeBSD
|
|
#############################################
|
|
|
|
CC = gcc
|
|
|
|
OPT = -Wall -g -DDEBUG_LEVEL=1 -DMUST_ABORT
|
|
CC = gcc
|
|
|
|
bubulles.o: bubulles.c bubulles.h Makefile
|
|
$(CC) $(OPT) -c $<
|
|
|
|
# --- build some tests and tools
|
|
|
|
tbb: tbb.c bubulles.h bubulles.o Makefile
|
|
$(CC) $(OPT) $< bubulles.o -o tbb
|
|
|
|
#############################################
|