From 1fbebe4d166b036e7d5427775ef3239addcffb2f Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 27 May 2017 23:51:48 +0200 Subject: GNUmakefile: detect OS --- GNUmakefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index 9713e26..f598f4f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,12 +1,17 @@ -.error : This Makefile needs GNU make - CFLAGS+=-g -O2 -Wall -Wno-switch -Wextra -fstack-protector-strong -D_FORTIFY_SOURCE=2 LDLIBS=-lrt -ifdef OPENBSD + +OS := $(shell uname) + +ifeq ($(OS),OpenBSD) CFLAGS+=-I/usr/local/include -pthread LDLIBS=-L/usr/local/lib -liconv -pthread endif +ifeq ($(OS),Darwin) +LDLIBS=-liconv +endif + DESTDIR= PREFIX=/usr/local BINDIR=$(PREFIX)/bin -- cgit 1.4.1