1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2025-09-06 01:50:24 +02:00

Fix codeuses

This commit is contained in:
Geoffrey Frogeye 2018-05-06 01:14:09 +02:00
parent 678b7e939b
commit e758218dca
14 changed files with 200 additions and 86 deletions

View file

@ -40,8 +40,8 @@ bin/premier: obj/premier.o $(OBJS_O)
bin/test%: obj/test%.o $(OBJS_O)
# Programme de test sur PC, n'embarquant pas wiringPi
bin/local: obj/local.o
$(CC) $(CFLAGS) $(CFLAGS_CUSTOM) -lpthread $^ -o $@
bin/local: obj/local.o obj/CF.o obj/debug.o obj/position.o
$(CC) $(CFLAGS) $(CFLAGS_CUSTOM) -lpthread -lm $^ -o $@
# Génération des fichiers objets
obj/%.o: src/%.c src/%.h