aboutsummaryrefslogtreecommitdiffstats
path: root/mk/path.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-03-01 02:12:47 +0100
committerMattias Andrée <maandree@kth.se>2021-03-01 02:12:58 +0100
commiteebadeb4b4ee60dc768afd3036e3a29833ccb51e (patch)
treee20184a304c0ba1160477b644504fbb2e8146319 /mk/path.mk
parentfix build (diff)
downloadlibhaiku-eebadeb4b4ee60dc768afd3036e3a29833ccb51e.tar.gz
libhaiku-eebadeb4b4ee60dc768afd3036e3a29833ccb51e.tar.bz2
libhaiku-eebadeb4b4ee60dc768afd3036e3a29833ccb51e.tar.xz
misc + change license + changed behaviour of libhaiku_perror
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'mk/path.mk')
-rw-r--r--mk/path.mk176
1 files changed, 0 insertions, 176 deletions
diff --git a/mk/path.mk b/mk/path.mk
deleted file mode 100644
index 9d9d855..0000000
--- a/mk/path.mk
+++ /dev/null
@@ -1,176 +0,0 @@
-# Copyright (C) 2015, 2016 Mattias Andrée <maandree@member.fsf.org>
-#
-# Copying and distribution of this file, with or without modification,
-# are permitted in any medium without royalty provided the copyright
-# notice and this notice are preserved. This file is offered as-is,
-# without any warranty.
-
-
-#=== This file define path variables. ===#
-
-
-ifndef __PATH_MK_INCLUDED
-__PATH_MK_INCLUDED = 1
-
-
-# DIRECTORIES:
-
-# The package path prefix, if you want to install to another root, set DESTDIR to that root.
-PREFIX = /usr
-# The package path prefix for /bin, /sbin, /lib and /libexec.
-EXEC_PREFIX = /usr
-# The command path excluding prefix.
-BIN = /bin
-# The administration command path excluding prefix.
-SBIN = /sbin
-# The library path excluding prefix.
-LIB = /lib
-# The executable library path excluding prefix.
-LIBEXEC = /libexec
-# The header-file path excluding prefix.
-INCLUDE = /include
-# The resource path excluding prefix.
-DATA = /share
-# The man page sections path excluding prefix.
-MAN0 = /man0
-MAN1 = /man1
-MAN2 = /man2
-MAN3 = /man3
-MAN4 = /man4
-MAN5 = /man5
-MAN6 = /man6
-MAN7 = /man7
-MAN8 = /man8
-MAN9 = /man9
-
-# The command path including prefix.
-BINDIR = $(EXEC_PREFIX)$(BIN)
-# The administration command path including prefix.
-SBINDIR = $(EXEC_PREFIX)$(SBIN)
-# The library path including prefix.
-LIBDIR = $(EXEC_PREFIX)$(LIB)
-# The executable library path including prefix.
-LIBEXECDIR = $(EXEC_PREFIX)$(LIBEXEC)
-# The header-file path including prefix.
-INCLUDEDIR = $(PREFIX)$(INCLUDE)
-# The header-file path including prefix. Must not be /usr/local.
-ifeq ($(PREFIX),/usr/lcoal)
-OLDINCLUDEDIR = /usr$(INCLUDE)
-endif
-ifneq ($(PREFIX),/usr/lcoal)
-OLDINCLUDEDIR = $(PREFIX)$(INCLUDE)
-endif
-# The data path including prefix.
-DATADIR = $(PREFIX)$(DATA)
-# The architecture-dependent data path including prefix.
-SYSDEPDATADIR = $(DATADIR)
-# The resource path including prefix.
-RESDIR = $(DATADIR)
-# The architecture-dependent resource path including prefix.
-SYSDEPRESDIR = $(RESDIR)
-# The generic documentation path including prefix.
-DOCDIR = $(DATADIR)/doc/$(PKGNAME)
-# The info manual documentation path including prefix.
-INFODIR = $(DATADIR)/info
-# The DVI documentation path including prefix.
-DVIDIR = $(DOCDIR)
-# The PDF documentation path including prefix.
-PDFDIR = $(DOCDIR)
-# The PostScript documentation path including prefix.
-PSDIR = $(DOCDIR)
-# The HTML documentation path including prefix.
-HTMLDIR = $(DOCDIR)
-# The man page documentation path including prefix.
-MANDIR = $(DATADIR)/man
-# The Emacs LISP path including prefix.
-LISPDIR = $(DATADIR)/emacs/site-lisp
-# The locale path including prefix.
-LOCALEDIR = $(DATADIR)/locale
-# The license base path including prefix.
-LICENSEDIR = $(DATADIR)/licenses
-# The persistent variable data directory.
-VARDIR = /var
-# The persistent directory for temporary files.
-VARTMPDIR = $(VARDIR)/tmp
-# The network-common persistent variable data directory.
-COMDIR = /com
-# The network-common persistent directory for temporary files.
-COMTMPDIR = $(COMDIR)/tmp
-# The transient directory for temporary files.
-TMPDIR = /tmp
-# The transient directory for runtime files.
-RUNDIR = /run
-# The directory for site-specific configurations.
-SYSCONFDIR = /etc
-# The directory for pseudo-devices.
-DEVDIR = /dev
-# The /sys directory.
-SYSDIR = /sys
-# The /proc directory
-PROCDIR = /proc
-# The /proc/self directory
-SELFPROCDIR = $(PROCDIR)/self
-# The cache directory.
-CACHEDIR = $(VARDIR)/cache
-# The spool directory.
-SPOOLDIR = $(VARDIR)/spool
-# The empty directory.
-EMPTYDIR = $(VARDIR)/empty
-# The logfile directory.
-LOGDIR = $(VARDIR)/log
-# The state directory.
-STATEDIR = $(VARDIR)/lib
-# The highscore directory.
-GAMEDIR = $(VARDIR)/games
-# The lockfile directory.
-LOCKDIR = $(RUNDIR)/lock
-# The user skeleton directory.
-SKELDIR = $(SYSCONFDIR)/skel
-# The network-common cache directory.
-COMCACHEDIR = $(COMDIR)/cache
-# The network-common spool directory.
-COMSPOOLDIR = $(COMDIR)/spool
-# The network-common logfile directory.
-COMLOGDIR = $(COMDIR)/log
-# The network-common state directory.
-COMSTATEDIR = $(COMDIR)/lib
-# The network-common highscore directory.
-COMGAMEDIR = $(COMDIR)/games
-
-
-# FILENAME SUFFIXES:
-
-# Filename suffixes for man pages by section.
-MAN0EXT = .0
-MAN1EXT = .1
-MAN2EXT = .2
-MAN3EXT = .3
-MAN4EXT = .4
-MAN5EXT = .5
-MAN6EXT = .6
-MAN7EXT = .7
-MAN8EXT = .8
-MAN9EXT = .9
-
-
-# HELP VARIABLES:
-
-# All path variables that includes the prefix,
-# or are unaffected by the prefix.
-_ALL_DIRS = BINDIR SBINDIR LIBDIR LIBEXECDIR INCLUDEDIR DATADIR SYSDEPDATADIR DOCDIR \
- INFODIR DVIDIR PDFDIR PSDIR HTMLDIR MANDIR LOCALEDIR LICENSEDIR VARDIR \
- RESDIR VARTMPDIR COMDIR COMTMPDIR TMPDIR RUNDIR SYSCONFDIR DEVDIR SYSDIR \
- PROCDIR SELFPROCDIR CACHEDIR SPOOLDIR EMPTYDIR LOGDIR STATEDIR GAMEDIR \
- LOCKDIR SKELDIR COMCACHEDIR COMSPOOLDIR COMLOGDIR COMSTATEDIR COMGAMEDIR \
- SYSDEPRESDIR OLDINCLUDEDIR
-
-# ../, ../../, and ../../../, ignored if v is used, which if an absolute path.
-ifndef v
-__back1unless_v = ../
-__back2unless_v = ../../
-__back3unless_v = ../../../
-endif
-
-
-endif
-