Fixed typo: .PHONY depended on Makefile, but the target should depend on Makefile instead

This commit is contained in:
Georges Dupéron 2018-07-03 18:10:47 +02:00
parent 63624488e9
commit c32232bfad

View File

@ -1,9 +1,9 @@
os_filename = os.bat
.PHONY: all
all: $(os_filename) os.ndisasm.disasm os.reasm.asm os.reasm .gitignore
all: $(os_filename) os.ndisasm.disasm os.reasm.asm os.reasm .gitignore Makefile
../deploy-screenshots:
../deploy-screenshots: Makefile
mkdir $@
$(os_filename): os.asm ../deploy-screenshots Makefile
@ -25,8 +25,8 @@ os.reasm: os.reasm.asm $(os_filename) Makefile
echo "Re-assembled file is different from $(os_filename). Use meld os.ndisasm.disasm os.reasm.disasm to see differences."; \
exit 1)
.PHONY: clean Makefile
clean:
.PHONY: clean
clean: Makefile
rm -f $(os_filename) os.ndisasm.disasm os.reasm.asm os.reasm
.gitignore: Makefile