diff options
Diffstat (limited to 'mk')
-rw-r--r-- | mk/boilerplate.mk | 28 | ||||
-rw-r--r-- | mk/config.mk | 12 | ||||
-rw-r--r-- | mk/target.mk | 17 | ||||
-rw-r--r-- | mk/version.mk | 18 |
4 files changed, 0 insertions, 75 deletions
diff --git a/mk/boilerplate.mk b/mk/boilerplate.mk deleted file mode 100644 index 0f29d4ab..00000000 --- a/mk/boilerplate.mk +++ /dev/null @@ -1,28 +0,0 @@ -#----------------------------------------------------------------------------- -# $Id: boilerplate.mk,v 1.1 2002/04/04 16:23:42 simonmar Exp $ - -# Begin by slurping in the boilerplate from one level up. -# Remember, TOP is the top level of the innermost level -# (FPTOOLS_TOP is the fptools top) - --include $(TOP)/mk/version.mk - -# We need to set TOP to be the TOP that the next level up expects! -# The TOP variable is reset after the inclusion of the fptools -# boilerplate, so we stash TOP away first: -HADDOCK_TOP := $(TOP) -TOP:=$(TOP)/.. - -include $(TOP)/mk/boilerplate.mk - -# Reset TOP -TOP:=$(HADDOCK_TOP) - -# ----------------------------------------------------------------- -# Everything after this point -# augments or overrides previously set variables. -# ----------------------------------------------------------------- - --include $(TOP)/mk/paths.mk --include $(TOP)/mk/opts.mk --include $(TOP)/mk/suffix.mk diff --git a/mk/config.mk b/mk/config.mk deleted file mode 100644 index 5675a1e6..00000000 --- a/mk/config.mk +++ /dev/null @@ -1,12 +0,0 @@ -# -# Haddock project information -# - -# what to include in a binary distribution -HaddockMainDir = haddock -HaddockBinDistDirs = haddock -HaddockBinDistDocs = haddock/doc -HaddockBinDistShScripts = haddock-$(ProjectVersion) -HaddockBinDistLinks = haddock - -include $(HaddockMainDir)/mk/version.mk diff --git a/mk/target.mk b/mk/target.mk deleted file mode 100644 index dcba624e..00000000 --- a/mk/target.mk +++ /dev/null @@ -1,17 +0,0 @@ -#----------------------------------------------------------------------------- -# $Id: target.mk,v 1.1 2002/04/04 16:23:42 simonmar Exp $ -# target.mk project stub -# - -# We need to set TOP to be the TOP that the next level up expects! -# The TOP variable is reset after the inclusion of the fptools -# boilerplate, so we stash TOP away first: -HADDOCK_TOP := $(TOP) -TOP:=$(TOP)/.. - -include $(TOP)/mk/target.mk - -HADDOCK_INPLACE = $(HADDOCK_TOP)/src/haddock-inplace - -# Reset TOP -TOP:=$(HADDOCK_TOP) diff --git a/mk/version.mk b/mk/version.mk deleted file mode 100644 index e454d1f1..00000000 --- a/mk/version.mk +++ /dev/null @@ -1,18 +0,0 @@ -# -# Project-specific version information. -# -# Note: -# this config file is intended to centralise all -# project version information. To bump up the version -# info on your package, edit this file and recompile -# all the dependents. This file lives in the source tree. -# - -# -# haddock project variable settings: -# -ProjectName = Haddock -ProjectNameShort = haddock -ProjectVersion = 0.7 -ProjectVersionInt = 7 -ProjectPatchLevel = 0 |