You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
623 B
30 lines
623 B
|
|
|
|
# ------------------------------------------------------ |
|
# Piloter le laser de Gaby |
|
# ------------------------------------------------------ |
|
|
|
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 $@ |
|
|
|
# ------------------------------------------------------ |
|
|
|
|
|
|