libbubulle/Makefile

21 lines
455 B
Makefile
Raw Normal View History

2018-11-10 21:31:31 +11:00
#############################################
# making the bubulles library
2018-11-17 01:31:33 +11:00
# maybe must be run with gmake on FreeBSD
2018-11-10 21:31:31 +11:00
#############################################
2018-11-17 01:31:33 +11:00
CC = gcc
2018-11-10 21:31:31 +11:00
OPT = -Wall -g -DDEBUG_LEVEL=1 -DMUST_ABORT
CC = gcc
2018-11-10 21:31:31 +11:00
bubulles.o: bubulles.c bubulles.h Makefile
$(CC) $(OPT) -c $<
2018-11-10 22:22:28 +11:00
# --- build some tests and tools
2018-11-10 22:22:28 +11:00
2018-11-10 21:31:31 +11:00
tbb: tbb.c bubulles.h bubulles.o Makefile
$(CC) $(OPT) $< bubulles.o -o tbb
2018-11-10 21:31:31 +11:00
#############################################