diff options
author | simonpj <unknown> | 1997-03-14 08:11:17 +0000 |
---|---|---|
committer | simonpj <unknown> | 1997-03-14 08:11:17 +0000 |
commit | 1fb1ab5d53a09607e7f6d2450806760688396387 (patch) | |
tree | b437d55fe6dc77a4bb21143be31188b9985793f9 /mk/install.mk.in | |
parent | fa6fb09e2e4e6918eebc79ed187f32c88817c9db (diff) | |
download | haskell-1fb1ab5d53a09607e7f6d2450806760688396387.tar.gz |
[project @ 1997-03-14 07:52:06 by simonpj]
Major update to more-or-less 2.02
Diffstat (limited to 'mk/install.mk.in')
-rw-r--r-- | mk/install.mk.in | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/mk/install.mk.in b/mk/install.mk.in deleted file mode 100644 index 2d45807648..0000000000 --- a/mk/install.mk.in +++ /dev/null @@ -1,83 +0,0 @@ -#----------------------------------------------------------------------------- -# $Id: install.mk.in,v 1.2 1996/11/21 16:50:34 simonm Exp $ - -AT_GLASGOW = @AT_GLASGOW@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -ifeq ($(AT_GLASGOW), 1) -INSTBINDIR = $(exec_prefix)/bin/`/usr/local/gnu/bin/hw_os` -else -INSTBINDIR = $(exec_prefix)/bin -endif - -INSTSCRIPTDIR = $(exec_prefix)/bin -INSTLIBDIR = $(prefix)/lib/$(HOSTPLATFORM) -INSTDATADIR = $(prefix)/lib - -#----------------------------------------------------------------------------- -# Man pages & Documentation - -# top of manual page tree to install in -# NB: not necessarily the same place as to look for man pages (?) -INSTMANROOT = $(prefix) - -# prefix for man page _sources_ (vs .../cat) -INSTMANSRCROOT = $(INSTMANROOT)/man - -# man pages for commands -INSTCOMMANDIR = $(INSTMANSRCROOT)$(COMMANSUFFIX) - -# man pages for library routines -INSTLIBMANDIR = $(INSTMANSRCROOT)$(LIBMANSUFFIX) - -# man pages for system commands -INSTSYSMANDIR = $(INSTMANSRCROOT)$(SYSMANSUFFIX) - -# suffix for installing commands'/etcs' man pages -COMMANSUFFIX = 1 -LIBMANSUFFIX = 3 -SYSMANSUFFIX = 8 - -ifeq ($(AT_GLASGOW), 1) -INSTINFODIR = /local/doc/info -else -INSTINFODIR = $(prefix)/info -endif - -#----------------------------------------------------------------------------- -# How to install things - -# this stuff about "who" does the installing doesn't have make vars -# as it is not intended to be runtime-changeable. -# -ifdef OWNER -INSTOWNER = -o $(OWNER) -else -INSTOWNER = -endif - -ifdef GROUP -INSTGROUP = -g $(GROUP) -else -INSTGROUP = -endif - -INSTFILEFLAGS = -INSTSTRIP = -INSTBINFLAGS = \ - -m 0755 $(INSTOWNER) $(INSTGROUP) $(INSTFILEFLAGS) $(INSTSTRIP) - - -# No strip flags on rest of these -- avoids message from install -# about stripping non-binaries. - -GENINSTALLFLAGS = $(INSTOWNER) $(INSTGROUP) $(INSTFILEFLAGS) - -INSTSCRIPTFLAGS = -m 0755 $(GENINSTALLFLAGS) -INSTLIBFLAGS = -m 0644 $(GENINSTALLFLAGS) -INSTDATALIBFLAGS = -m 0644 $(GENINSTALLFLAGS) -INSTINCFLAGS = -m 0644 $(GENINSTALLFLAGS) -INSTDATAFLAGS = -m 0644 $(GENINSTALLFLAGS) -INSTMANFLAGS = -m 0644 $(GENINSTALLFLAGS) -INSTRANLIBFLAGS = |