From d44ca7a3666d1272bc9c0c8fae12edd90bf57633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sun, 28 Jul 2019 19:17:04 +0200 Subject: [PATCH 36/36] Makefile: Remove the explicit rules for linking. Every platform-specific implementation of Make ships implicit rules for such plain targets, which should be preferred. --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 98ad807..a268a83 100644 --- a/Makefile +++ b/Makefile @@ -8,10 +8,8 @@ INSTALL ?= install all: cc1541 cc1541: cc1541.o - $(CC) -o $@ $^ $(LDFLAGS) test_cc1541: test_cc1541.o - $(CC) -o $@ $^ $(LDFLAGS) check: cc1541 test_cc1541 ./test_cc1541 ./cc1541 -- 2.21.0