aboutsummaryrefslogtreecommitdiff
path: root/src/os.mk
diff options
context:
space:
mode:
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})