From: short <> Date: Mon, 18 Nov 2002 21:55:49 +0000 (+0000) Subject: Fix to be non-GNU make(1) compliant X-Git-Url: https://git.jankratochvil.net/?p=middleman.git;a=commitdiff_plain;h=e6830b91b5c414a204d28126d3664272af82e3c5 Fix to be non-GNU make(1) compliant --- diff --git a/Makefile.in b/Makefile.in index 76ef648..2a8b479 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,7 +19,8 @@ pcre/dftables: pcre/chartables.c: pcre/dftables pcre/dftables > pcre/chartables.c -%.o: %.c +# Do not use pattern rule here as it won't pass non-GNU make(1)s! +.c.o: $(CC) -c $(CFLAGS) $< -o $@ $(TARGET): $(OBJS)