summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleo2000-09-17 14:24:57 +0000
committerleo2000-09-17 14:24:57 +0000
commite481a1bc8353fb351b4d35d147441a12cb2ee77d (patch)
tree23cf3733995463c4922c5baf4457c833f8e7ae6f
parent2f80d1a688631867dc93876e472685ef3abaf9f4 (diff)
FreeBSD configuration
git-svn-id: http://svn.leocad.org/trunk@122 c7d43263-9d01-0410-8a33-9dba5d9f93d6
-rw-r--r--config.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.mk b/config.mk
index 277107c..45fab96 100644
--- a/config.mk
+++ b/config.mk
@@ -16,12 +16,13 @@ CPPFLAGS += -O2 -Wall
# Add linker options, such as -L option to include jpeglib's libraries
# LDFLAGS += -L/home/fred/jpeglib
-### Linux configuration
+### Linux and FreeBSD configuration
-ifeq ($(shell uname), Linux)
+ifneq ($(findstring $(shell uname), Linux, FreeBSD), )
OS := -DLC_LINUX
OSDIR := linux
+PREFIX := /usr/local
endif