1 #################################################################################
5 # This file defines Make variables for standard directories
8 #################################################################################
11 #-----------------------------------------------------------------
16 #-----------------------------------------------------------------------------
17 # install configuration
19 # The install standard target is guided by the following four variables
21 # INSTALL_PROGS (installed in $(bindir))
22 # INSTALL_LIBS (installed in $(libdir))
23 # INSTALL_LIBEXECS (installed in $(libexecdir))
24 # INSTALL_DATAS (installed in $(datadir))
26 # see target.mk for more information.
30 # Setting user/group ownership for the installed entities
32 # this stuff about "who" does the installing doesn't have make vars
33 # as it is not intended to be run-time changeable.
36 INSTALL_OWNER = -o $(OWNER)
42 INSTALL_GROUP = -g $(GROUP)
47 SRC_INSTALL_OPTS += $(INSTALL_OWNER) $(INSTALL_GROUP)
50 # Invocations of `install' for the three different classes
54 INSTALL_PROGRAM = $(INSTALL)
55 INSTALL_SCRIPT = $(INSTALL)
56 INSTALL_DATA = $(INSTALL) -m 644
57 INSTALL_DIR = $(FPTOOLS_TOP)/glafp-utils/mkdirhier/mkdirhier
60 # The install variables does not have any defaults,
61 # what files to install have to be specified in the Makefiles.
63 #INSTALL_PROGS += $(HS_PROG) $(C_PROG)
64 #INSTALL_LIBS += $(LIBRARY)
65 #INSTALL_DATAS += $(HS_IFACES)
67 #################################################################################
69 # Standard variable names
71 #################################################################################
74 # The fptools mk setup defines a set of standard names which are used by the standard
75 # targets provided by mk. One example of this is the use of standard names
76 # for specifying what files to compile, their intermediate/object code, and
77 # the name of the final executable. Based on the settings of these variables, the
78 # standard targets will generate/expand rules that automatically compile and
83 # SRCS - sources, might be prefixed to indicate what type of source
85 # OBJS - object files (possibly prefixed).
87 # PROG - name of final executable
91 # BOOT_SRCS: list of machine generated Haskell modules.
92 # HS_SRCS: list of Haskell modules you want to compile.
93 # (also use by depend rule).
94 # HS_OBJS: list of corresponding object files
95 # HS_PROG: program that is ultimately linked.
96 # HS_IFACES: list of interface files generated
97 # (caveat: assuming no funny use of -hisuf and that
98 # file name and module name match)
100 SRCS=$(wildcard *.lhs *.hs *.c *.lc *.prl *.lprl *.lit *.verb)
102 HS_SRCS=$(filter %.lhs %.hs %.hc,$(SRCS) $(BOOT_SRCS))
103 HS_OBJS=$(addsuffix .$(way_)o,$(basename $(HS_SRCS)))
104 HS_IFACES=$(addsuffix .$(way_)hi,$(basename $(HS_SRCS)))
106 C_SRCS=$(filter %.lc %.c,$(SRCS))
107 C_OBJS=$(addsuffix .$(way_)o,$(basename $(C_SRCS)))
109 # SCRIPT_SRCS: list of raw script files (in literate form)
110 # SCRIPT_OBJS: de-litted scripts
111 SCRIPT_SRCS=$(filter %.lprl,$(SRCS))
112 SCRIPT_OBJS=$(addsuffix .prl,$(basename $(SCRIPT_SRCS)))
114 OBJS=$(HS_OBJS) $(C_OBJS) $(SCRIPT_OBJS)
117 # Note that as long as you use the standard variables for setting
118 # which C & Haskell programs you want to work on, you don't have
119 # to set any of the clean variables - the default should do the Right
123 #------------------------------------------------------------------
125 # make depend defaults
127 # The default set of files for the dependency generators to work on
128 # is just their source equivalents.
130 MKDEPENDHS_SRCS=$(HS_SRCS)
131 MKDEPENDC_SRCS=$(C_SRCS)
133 #------------------------------------------------------------------
134 # Clean file make-variables.
136 # The following three variables are used to control
137 # what gets removed when doing `make clean'
139 # MOSTLYCLEAN_FILES object code etc., but not stuff
140 # that is slow to recompile and/or stable
142 # CLEAN_FILES all files that are created by running make.
144 # MAINTAINER_CLEAN_FILES also clean out machine-generated files
145 # that may require extra tools to create.
148 MOSTLY_CLEAN_FILES += $(HS_OBJS) $(C_OBJS)
149 CLEAN_FILES += $(HS_PROG) $(C_PROG) $(SCRIPT_PROG) $(PROG) $(LIBRARY) \
152 MAINTAINER_CLEAN_FILES += .depend $(BOOT_SRCS)
155 # `Standard' set of files to clean out.
157 MOSTLY_CLEAN_FILES += \
158 *.CKP *.ln *.BAK *.bak *.o *.hc core a.out errs ,* *.a .emacs_* \
159 tags TAGS *.ind *.ilg *.idx *.idx-prev *.aux *.aux-prev *.dvi *.log \
160 *.toc *.lot *.lof *.blg *.info *.itxi *.itex *.ihtml *.cb
162 #------------------------------------------------------------------
163 # Documentation setup.
165 # Documentation is not normally produced via the default target, but
166 # selectively through a set of standard targets (e.g, dvi, html, etc., see
167 # target.mk). Here we define the variables (and their default settings),
168 # that control the operation of these standard targets.
170 # Documentation variables:
172 # DOC_SRCS = list of documents you want to generate various
173 # forms of documentation from.
174 # DOC_DVI = list of DVI files to generate.
175 # DOC_HTML = list of HTML files to generate
176 # DOC_TEXI = list of TexInfo files to generate
177 # DOC_INFO = list of Emacs Info files to generate
178 # DOC_TEXT = list of simple text files to generate
180 DOC_SRCS=$(wildcard *.tex *.lit)
181 DOC_DVI =$(addsuffix .dvi,$(basename $(DOC_SRCS)))
182 DOC_PS =$(addsuffix .ps,$(basename $(DOC_SRCS)))
183 DOC_TEXI=$(addsuffix .texi,$(basename $(DOC_SRCS)))
184 DOC_INFO=$(addsuffix .info,$(basename $(DOC_SRCS)))
185 DOC_HTML=$(addsuffix .html,$(basename $(DOC_SRCS)))
186 DOC_TEXT=$(addsuffix .txt,$(basename $(DOC_SRCS)))
187 CLEAN_FILES += $(DOC_TEXT) $(DOC_HTML) $(DOC_TEXI) $(DOC_PS) $(DOC_DVI)
189 #------------------------------------------------------------------
193 # Following variables are used for creating source and binary distributions:
195 # SRC_DIST_NAME && BIN_DIST_NAME -- the package names
197 # SRC_DIST_FILES = list of extra files to include from a build tree into a source
200 # SRC_DIST_DIR = what the current directory in the source/build tree
201 # maps to in the source distrib. tree being created.
203 SRC_DIST_NAME=$(ProjectNameShort)-$(ProjectVersion)
206 # Binary distributions proceeds as follows:
208 # Fromthe top of a build tree, you do `make binary-dist'. The
209 # canned rule for this (in target.mk) will then do a binary
210 # install to a temporary directory before packaging it all up.
211 # The following variables guide the binary-dist:
213 # BIN_DIST_TMPDIR= the absolute path to where the temporary directory
214 # structure of a binary distribution should be created.
215 # [Default: toplevel from which you issue `make binary-dist']
216 # BIN_DIST_NAME= what to call the thing.
218 # BIN_DIST_DIRS= at the toplevel, list of directories to descend into when
219 # building the distribution tree.
221 # An extra directory variable that is set during bin-dists is $(bindist_top), giving
222 # the abs. path to the root of the binary installation tree. (useful when punting
223 # stuff like README and ANNOUNCE into a distrib, for instance)
225 # The layout of a binary distribution is described in the
226 # installation documentation.