gadgets-OSC/Gaby/Makefile

31 lines
623 B
Makefile
Raw Normal View History

2021-06-29 08:12:55 +02:00
# ------------------------------------------------------
# Piloter le laser de Gaby
# ------------------------------------------------------
2021-07-09 12:46:18 +02:00
DEPS = Makefile transmit.h receive-osc.h
receive-osc.o: receive-osc.c $(DEPS)
gcc -Wall -c $<
transmit.o: transmit.c $(DEPS)
gcc -Wall -c $<
audiodrive.o: audiodrive.c $(DEPS)
gcc -Wall -c $<
# ------------------------------------------------------
gabylaser.o: gabylaser.c $(DEPS)
gcc -Wall -c $<
OBJS = receive-osc.o transmit.o
gabylaser: gabylaser.o $(DEPS) $(OBJS)
gcc -Wall $< $(OBJS) -llo -o $@
# ------------------------------------------------------