Add sys.mk to define system locations.

This commit is contained in:
Roy Marples
2008-01-11 16:03:38 +00:00
parent abde759d5b
commit 28afeac09e
6 changed files with 32 additions and 29 deletions

22
mk/sys.mk Normal file
View File

@@ -0,0 +1,22 @@
# Generic system definitions
# Copyright 2008 Roy Marples
AR?= ar
ECHO?= echo
INSTALL?= install
RANLIB?= ranlib
PICFLAG?= -fPIC
BINDIR?= /sbin
INCDIR?= /usr/include
INCMODE?= 0444
LIBNAME?= lib
LIBDIR?= /usr/${LIBNAME}
LIBMODE?= 0444
SHLIBDIR?= /${LIBNAME}
MANDIR?= /usr/share/man/man
MANMODE?= 0444