libbubulle/Makefile

19 lines
434 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
CC = gcc
2018-11-10 11:31:31 +01:00
bubulles.o: bubulles.c bubulles.h Makefile
$(CC) $(OPT) -c $<
2018-11-10 12:22:28 +01:00
# --- build some tests and tools
2018-11-10 12:22:28 +01:00
2018-11-10 11:31:31 +01:00
tbb: tbb.c bubulles.h bubulles.o Makefile
$(CC) $(OPT) $< bubulles.o -o tbb
2018-11-10 11:31:31 +01:00
#############################################