From 899b2bff03d3c4c97bd6753809e4636d8ef96a32 Mon Sep 17 00:00:00 2001 From: Boaz Harrosh Date: Mon, 23 Feb 2009 16:53:11 +0200 Subject: [PATCH] open-osd: Makefile: BSD builds Don't build all targets on BSD (Only osd-target for now) Signed-off-by: Boaz Harrosh --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index ecb94f2..131fc6c 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,14 @@ checkpatch_2_kdev = checkpatch-2-kdev # comment out any below to remove from compelation all: target all: stgt +# FreeBSD does not build these yet +UNAME=$(shell uname) +ifneq (FreeBSD,$(UNAME)) all: target_test all: initiator all: initiator_tests all: initiator_python +endif clean: stgt_clean initiator_clean target_clean util_clean