From efa571043b5beb3e7bf7454146efc581e4f05e3a Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Wed, 21 Aug 2013 09:49:26 -0400 Subject: [PATCH] Make makes output consistent with BSD makes output for make --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7f9a3b1..eee0d49 100644 --- a/Makefile +++ b/Makefile @@ -82,8 +82,8 @@ endif endif #standard rules -%.o: %.c - $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) +c.o: + $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) exec-standalone.o: exec.c $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) -DQCVM_EXECUTOR=1 -- 2.39.2