commit cef01ad97b1e215b0879c369e42e31bb3e5188a1
Author: Laslo Hunhold <[email protected]>
AuthorDate: Sun Apr 2 20:53:55 2017 +0200
Commit: Laslo Hunhold <[email protected]>
CommitDate: Sun Apr 2 20:55:49 2017 +0200
Remove prerequisite from single-suffix inference rule
This is against the standard:
"The application shall ensure that the makefile does not specify
prerequisites for inference rules;"[0]
We are still fine though as we explicitly state the dependency on the
requisite-objects in the $(BIN)-target.
Thanks Lucas for pointing this out!
[0]:http://pubs.opengroup.org/onlinepubs/9699919799/utilities/make.html
diff --git a/Makefile b/Makefile
index 1f7446f..4752fb6 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ $(BIN): $(REQ:=.o)
$(BIN:=.o): config.mk $(HDR) $(REQ:=.h)
-.o: $(REQ:=.o)
+.o:
$(CC) $(LDFLAGS) $($*-LDFLAGS) -o $@ $< $(REQ:=.o)
clean: