summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
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)