mirror of
https://github.com/hamishcoleman/thinkpad-ec
synced 2024-11-13 13:10:38 +00:00
21 lines
287 B
Makefile
21 lines
287 B
Makefile
|
|
all:
|
|
false
|
|
|
|
DEPSDIR := .d
|
|
$(shell mkdir -p $(DEPSDIR))
|
|
|
|
x230.G2HT35WW.img: ../x230.G2HT35WW.img
|
|
cp $< $@
|
|
|
|
-include $(DEPSDIR)/ec.img.deps
|
|
$(DEPSDIR)/ec.img.deps: Makefile
|
|
nasm -MT ec.img -M ec.asm >$@
|
|
|
|
%.img: %.asm
|
|
nasm -f bin -o $@ $<
|
|
|
|
diff: ec.img x230.G2HT35WW.img
|
|
vbindiff $^
|
|
|