aboutsummaryrefslogtreecommitdiff
path: root/src/os.mk
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-01-10 16:35:59 +0000
committerRoy Marples <roy@marples.name>2008-01-10 16:35:59 +0000
commit43147845209873b0776bd75d363913fe25611f49 (patch)
treeab3295c30664476d8d05b0fe5fe9ace702ade5ea /src/os.mk
parent2643f2e605f102d2c2fa098d0cf5400d3795ed4a (diff)
Allow for OS and SUBOS folders so we can introduce NetBSD scripts whilst keeping BSD for all BSD's.
Diffstat (limited to 'src/os.mk')
-rw-r--r--src/os.mk24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/os.mk b/src/os.mk
deleted file mode 100644
index a4bef109..00000000
--- a/src/os.mk
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 2008 Roy Marples
-
-# Generic definitions
-
-_OS_SH= u=`uname -s`; case "$${u}" in *BSD|DragonFly) echo "BSD";; *) echo "$${u}";; esac
-_OS!= ${_OS_SH}
-OS?= ${_OS}$(shell ${_OS_SH})
-
-_LIBNAME_SH= l=`readlink /lib`; case "$$l" in /lib64|lib64) echo "lib64";; *) echo "lib";; esac
-_LIBNAME!= ${_LIBNAME_SH}
-LIBNAME?= ${_LIBNAME}$(shell ${_LIBNAME_SH})
-RC_LIB= /$(LIB)/rc
-
-_DEF_SH= case `uname -s` in Linux) echo "-D_XOPEN_SOURCE=600 -D_BSD_SOURCE";; *) echo;; esac
-_DEF!= ${_DEF_SH}
-CFLAGS+= ${_DEF}$(shell ${_DEF_SH})
-
-_LIBDL_SH= case `uname -s` in Linux) echo "-Wl,-Bdynamic -ldl";; *) echo;; esac
-_LIBDL!= ${_LIBDL_SH}
-LIBDL?= ${_LIBDL}$(shell ${_LIBDL_SH})
-
-_LIBKVM_SH= case `uname -s` in *BSD) echo "-lkvm";; *) echo;; esac
-_LIBKVM!= ${_LIBKVM_SH}
-LIBKVM?= ${_LIBKVM}$(shell ${_LIBKVM_SH})