11 lines
245 B
Makefile
11 lines
245 B
Makefile
|
|
BBFUNCS = ../libbubulles.a
|
|
|
|
OPT = -Wall -g -DDEBUG_LEVEL=1 -DMUST_ABORT
|
|
|
|
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 $<
|