From dc27919d7a66a6e8685ce07c71aefa4f03ef7c07 Mon Sep 17 00:00:00 2001 From: Idwer Vollering Date: Mon, 28 May 2012 00:23:55 +0200 Subject: Make bucts compile on FreeBSD using gmake Signed-off-By: Idwer Vollering --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 9ab5c21..68541e6 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,11 @@ CC:=gcc OBJ:=bucts.o VERSION:=$(shell git describe) +ifeq ($(shell uname), FreeBSD) + CFLAGS = -I/usr/local/include + LDFLAGS = -L/usr/local/lib +endif + all: bucts bucts: $(OBJ) -- cgit v1.2.1