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.
CubeSatSim/probeTxRx/Makefile

16 lines
276 B

all: probeTxRx
rebuild: clean
rebuild: all
clean:
rm -f probeTxRx
rm -f probeTxRx.o
probeTxRx: probeTxRx.o
gcc -Wall -Wextra -o probeTxRx -Llibs/. probeTxRx.o -lwiringPi -lax5043
probeTxRx.o: probeTxRx.c
probeTxRx.o: spi/ax5043spi_p.h
gcc -Wall -Wextra -c probeTxRx.c

Powered by TurnKey Linux.