]> git.zerfleddert.de Git - rsbs2/blob - Makefile
more duplicate variables
[rsbs2] / Makefile
1 CFLAGS=-Wall -O3
2
3 all: firmware
4
5 firmware: firmware.o rsb-crc.o rsb-lz.o filesystem.o
6
7 firmware.o: firmware.c rsb-crc.h filesystem.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 filesystem.o: filesystem.c filesystem.h rsb-lz.h
14
15 clean:
16 rm -f firmware firmware.o rsb-crc.o rsb-lz.o filesystem.o
17
18 .PHONY: all clean
Impressum, Datenschutz