]> git.zerfleddert.de Git - rsbs2/blob - Makefile
extract all files from the firmware image.
[rsbs2] / Makefile
1 CFLAGS=-Wall -O3
2
3 all: firmware
4
5 firmware: firmware.o rsb-crc.o rsb-lz.o extract.o
6
7 firmware.o: firmware.c rsb-crc.h extract.h
8
9 rsb-crc.o: rsb-crc.c rsb-crc.h
10
11 rsb-lz.o: rsb-lz.c rsb-lz.h
12
13 extract.o: extract.c extract.h rsb-lz.h
14
15 clean:
16 rm -f firmware firmware.o rsb-crc.o rsb-lz.o extract.o
17
18 .PHONY: all clean
Impressum, Datenschutz