11 lines
250 B
Makefile
11 lines
250 B
Makefile
|
|
BBFUNCS = ../libbubulles.a
|
|
|
|
OPT = -Wall -g -pg -DDEBUG_LEVEL=0 -DMUST_ABORT=0
|
|
|
|
read_obj: read_obj.c Makefile importobj.o $(BBFUNCS)
|
|
gcc $(OPT) $< importobj.o $(BBFUNCS) -o $@
|
|
|
|
importobj.o: importobj.c ../bubulles.h Makefile
|
|
$(CC) $(OPT) -c $<
|