libbubulle/tools/Makefile

14 lines
307 B
Makefile
Raw Normal View History

2020-06-05 00:17:17 +02:00
BBFUNCS = ../libbubulles.a
2023-03-30 20:10:42 +02:00
OPT = -Wall -g -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 $<
2023-04-03 00:52:09 +02:00
essai_faces: essai_faces.c Makefile
$(CC) $(OPT) $< -o $@