X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/rsbs2/blobdiff_plain/972ac24b5466e95d78f4af724c2f4e197f340eb5..3f4d6039fcf53e15e439597d6115b97ccd576457:/Makefile diff --git a/Makefile b/Makefile index 6122eea..15de0a8 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,18 @@ -CFLAGS=-Wall +CFLAGS=-Wall -O3 all: firmware -firmware: firmware.o rsb-crc.o +firmware: firmware.o rsb-crc.o rsb-lz.o filesystem.o -firmware.o: firmware.c rsb-crc.h +firmware.o: firmware.c rsb-crc.h filesystem.h rsb-crc.o: rsb-crc.c rsb-crc.h +rsb-lz.o: rsb-lz.c rsb-lz.h + +filesystem.o: filesystem.c filesystem.h rsb-lz.h + clean: - rm -f firmware firmware.o rsb-crc.o + rm -f firmware firmware.o rsb-crc.o rsb-lz.o filesystem.o .PHONY: all clean