libbubulle/tools/Makefile

11 lines
250 B
Makefile
Raw Normal View History

2020-06-05 00:17:17 +02:00
BBFUNCS = ../libbubulles.a
2023-03-30 05:39:36 +02:00
OPT = -Wall -g -pg -DDEBUG_LEVEL=0 -DMUST_ABORT=0
2020-06-05 10:50:33 +02:00
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 $<