diff options
Diffstat (limited to 'Documentation/EDID/Makefile')
-rw-r--r-- | Documentation/EDID/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/EDID/Makefile b/Documentation/EDID/Makefile new file mode 100644 index 000000000000..17763ca3f12b --- /dev/null +++ b/Documentation/EDID/Makefile | |||
@@ -0,0 +1,26 @@ | |||
1 | |||
2 | SOURCES := $(wildcard [0-9]*x[0-9]*.S) | ||
3 | |||
4 | BIN := $(patsubst %.S, %.bin, $(SOURCES)) | ||
5 | |||
6 | IHEX := $(patsubst %.S, %.bin.ihex, $(SOURCES)) | ||
7 | |||
8 | CODE := $(patsubst %.S, %.c, $(SOURCES)) | ||
9 | |||
10 | all: $(BIN) $(IHEX) $(CODE) | ||
11 | |||
12 | clean: | ||
13 | @rm -f *.o *.bin.ihex *.bin *.c | ||
14 | |||
15 | %.o: %.S | ||
16 | @cc -c $^ | ||
17 | |||
18 | %.bin: %.o | ||
19 | @objcopy -Obinary $^ $@ | ||
20 | |||
21 | %.bin.ihex: %.o | ||
22 | @objcopy -Oihex $^ $@ | ||
23 | @dos2unix $@ 2>/dev/null | ||
24 | |||
25 | %.c: %.bin | ||
26 | @echo "{" >$@; hexdump -f hex $^ >>$@; echo "};" >>$@ | ||