From bbb0e870e5234ed52138c22927bab9dba3c32d3c Mon Sep 17 00:00:00 2001 From: Andrew Wilcox Date: Sat, 16 Apr 2016 15:03:12 -0500 Subject: [PATCH 1/2] Makefile: Fix install target dependencies --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e1ee228..638a354 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ clean: bin/%: src/%.c $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -install: $(patsubst bin/%,$(bindir)/%,$(B)) $(patsubst bin/%,$(usrbindir)/%,$(UB)) +install: $(B:%=$(bindir)/%) $(UB:%=$(usrbindir)/%) size: $(ALL) size -t $(ALL) -- 2.7.4