From: Dale Weiler Date: Wed, 21 Aug 2013 13:49:26 +0000 (-0400) Subject: Make makes output consistent with BSD makes output for make X-Git-Tag: 0.3.5~151 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=efa571043b5beb3e7bf7454146efc581e4f05e3a Make makes output consistent with BSD makes output for make --- 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