diff options
author | Roy Marples <roy@marples.name> | 2008-03-28 10:46:12 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-03-28 10:46:12 +0000 |
commit | ee4e861796ad9b19acb45c576ed181ce2fdfebf5 (patch) | |
tree | 425c9a68f127bce193717055d99be03a1380516c /mk | |
parent | 11e33e81c855395cbd931e99f7452ed6b3fef357 (diff) |
Put some dir locations in rc.h so that 3rd party apps can become awware of them.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/os.mk | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -10,14 +10,3 @@ include ${MK}/os-${OS}.mk RC_LIB= /$(LIBNAME)/rc -_PREFIX_SH= if test -n "${PREFIX}" && test "${PREFIX}" != "/"; then echo "-DPREFIX=\\\"${PREFIX}\\\""; else echo ""; fi -_PREFIX!= ${_PREFIX_SH} -CFLAGS+= ${_PREFIX}$(shell ${_PREFIX_SH}) - -_PKG_PREFIX_SH= if test -n "${PKG_PREFIX}" && test "${PKG_PREFIX}" != "/" && test "${PKG_PREFIX}" != "${PREFIX}"; then echo "-DPKG_PREFIX=\\\"${PKG_PREFIX}\\\""; else echo ""; fi -_PKG_PREFIX!= ${_PKG_PREFIX_SH} -CFLAGS+= ${_PKG_PREFIX}$(shell ${_PKG_PREFIX_SH}) - -_LCL_PREFIX_SH= if test -n "${LOCAL_PREFIX}" && test "${LOCAL_PREFIX}" != "/" && test "${LOCAL_PREFIX}" != "${PREFIX}"; then echo "-DLOCAL_PREFIX=\\\"${LOCAL_PREFIX}\\\""; else echo ""; fi -_LCL_PREFIX!= ${_LCL_PREFIX_SH} -CFLAGS+= ${_LCL_PREFIX}$(shell ${_LCL_PREFIX_SH}) |