summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mk/os.mk22
1 files changed, 11 insertions, 11 deletions
diff --git a/mk/os.mk b/mk/os.mk
index 2c4455c..2de3bc6 100644
--- a/mk/os.mk
+++ b/mk/os.mk
@@ -2,21 +2,21 @@
# Generic definitions
-_OS_SH_= uname -s
-_OS!= ${_OS_SH}
-OS?= ${_OS}$(shell ${_OS_SH})
+_OS_SH= uname -s
+_OS!= ${_OS_SH}
+OS?= ${_OS}$(shell ${_OS_SH})
-_SUBOS_SH= case `uname -s` in \
- *BSD|DragonFly) echo "BSD";; \
- *) uname -s;; \
- esac
-_SUBOS!= ${_SUBOS_SH}
+_SUBOS_SH= case `uname -s` in \
+ *BSD|DragonFly) echo "BSD";; \
+ *) uname -s;; \
+ esac
+_SUBOS!= ${_SUBOS_SH}
SUBOS?= ${_SUBOS}$(shell ${_SUBOS_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= /$(LIBNAME)/rc
+_LIBNAME!= ${_LIBNAME_SH}
+LIBNAME?= ${_LIBNAME}$(shell ${_LIBNAME_SH})
+RC_LIB= /$(LIBNAME)/rc
_DEF_SH= case `uname -s` in Linux) echo "-D_XOPEN_SOURCE=600 -D_BSD_SOURCE";; *) echo;; esac
_DEF!= ${_DEF_SH}