X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/rsbs2/blobdiff_plain/190cff1382ffb8c929861f8c19983c778f3f0559..972ac24b5466e95d78f4af724c2f4e197f340eb5:/Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6122eea --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CFLAGS=-Wall + +all: firmware + +firmware: firmware.o rsb-crc.o + +firmware.o: firmware.c rsb-crc.h + +rsb-crc.o: rsb-crc.c rsb-crc.h + +clean: + rm -f firmware firmware.o rsb-crc.o + +.PHONY: all clean