From 1dbffa50946ebd88f69d8a4c89bf62b94540c529 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 12 Apr 2022 10:31:14 -0400 Subject: Remove comment about config. No point in mentioning it. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1e2aa45..823f259 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=cc -CFLAGS=-I. -Iinclude +CFLAGS=-I. -Iinclude -std=gnu99 LDFLAGS=-L. PREFIX=/usr/local SONAME=0 @@ -8,7 +8,6 @@ all: cleanpath config.h: config.h.in rm -f config.h - # Broad assumption. Chances are you have it though if you're using this makefile instead of cmake sed 's/cmakedefine/define/;s/@HAVE_CONFSTR@/1/' config.h.in > config.h.tmp mv config.h.tmp config.h -- cgit