des bubulles
http://la.buvette.org/POV/libbb/about.html
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
640 B
30 lines
640 B
|
|
############################################# |
|
# |
|
# making the bubulles library |
|
# |
|
# for compiling on FreeBSD : |
|
# $ gmake CC=clang tbb |
|
# |
|
############################################# |
|
|
|
CC = gcc |
|
|
|
OPT = -Wall -g -O3 -DDEBUG_LEVEL=0 -DMUST_ABORT=0 |
|
|
|
libbubulles.a: bubulles.o importobj.o |
|
ar r $@ $? |
|
|
|
bubulles.o: bubulles.c bubulles.h Makefile |
|
$(CC) $(OPT) -c $< |
|
|
|
importobj.o: importobj.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 |
|
|
|
#############################################
|
|
|