libbubulle/tools/Makefile

11 lines
244 B
Makefile
Raw Normal View History

2020-06-05 00:17:17 +02:00
BBFUNCS = ../libbubulles.a
2020-06-05 10:50:33 +02:00
OPT = -Wall -g -DDEBUG_LEVEL=1 -DMUST_ABORT
2023-03-21 20:31:50 +01:00
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 $<