diff options
author | H. Peter Anvin <hpa@zytor.com> | 2018-10-13 00:01:23 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2018-10-13 00:01:23 -0700 |
commit | 5b8f7ad55b68e1f41171177a61a13cbbd3ca70cc (patch) | |
tree | cfd1a4b4e80e878432774772326f3c487eb2648b | |
parent | f9d2a02f1c5227be17e7094a23f0aa122d3e1a41 (diff) | |
download | abcdisk-5b8f7ad55b68e1f41171177a61a13cbbd3ca70cc.tar.gz abcdisk-5b8f7ad55b68e1f41171177a61a13cbbd3ca70cc.tar.xz abcdisk-5b8f7ad55b68e1f41171177a61a13cbbd3ca70cc.zip |
Makefile.in: simplify rule for bin2abc
There is no reason to list the headers as a dependency for the link
command.
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index b7166c2..c84520c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -50,11 +50,9 @@ deinter$(X): deinter.$(O) util.$(O) casdecode$(X): casdecode.$(O) unmangle.$(O) $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) -BIN2ABCOBJ = bin2abc.$(O) ihex.$(O) abs.$(O) relocs.$(O) \ +bin2abc$(X): bin2abc.$(O) ihex.$(O) abs.$(O) relocs.$(O) \ bac80.$(O) bac800.$(O) $(BINO) - -bin2abc$(X): $(BIN2ABCOBJ) $(HDRS) - $(CC) $(LDFLAGS) -o $@ $(BIN2ABCOBJ) $(LIBS) + $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) .PHONY: asmsrc asmsrc: |