From c77ea0210b31460d8846ddba8132765648ce35d8 Mon Sep 17 00:00:00 2001 From: Robert Ransom Date: Wed, 16 May 2012 12:14:02 +0000 Subject: [PATCH] Make Makefile possibly POSIX-conformant FreeBSD make still refuses to handle the ".o:" 'single-suffix inference rule'. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ec4de22..dcbf6f5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ include config.mk +.POSIX: +.SUFFIXES: .c .o + HDR = fs.h text.h util.h arg.h LIB = \ util/afgets.o \