[project @ 1998-08-27 09:14:38 by simonm]
[ghc-hetmet.git] / Makefile
1 ############################################################################
2 #
3 #                       fptools/Makefile
4 #
5 #               This is the main Makefile for fptools.
6 #
7 ############################################################################
8
9 TOP=.
10 include $(TOP)/mk/boilerplate.mk
11 SRC_DIST_DIR=$(shell pwd)/$(SRC_DIST_NAME)
12
13 #
14 # Totally evil hack to make the setting of SUBDIRS be dependent
15 # on whether we do `make install' or not. Having a $(ifeq ... ) would
16 # be preferable..
17 CURRENT_TARGET = $(MAKECMDGOALS)
18 SUBDIRS = $(shell if (test x$(CURRENT_TARGET) = xinstall) ; then echo $(ProjectsToInstall); else echo $(ProjectsToBuild); fi)
19
20 ifneq "$(Project)" ""
21    include $(shell echo $(Project) | tr A-Z a-z)/mk/config.mk
22 endif
23
24 #
25 # Files to include in fptools source distribution
26 #
27 SRC_DIST_DIRS += mk docs CONTRIB distrib $(ProjectsToBuild)
28 SRC_DIST_FILES += configure.in config.guess config.sub configure aclocal.m4 acconfig.h README INSTALL Makefile install-sh
29
30 #
31 # Making a binary distribution
32 #
33 # To make a particular binary distribution: 
34 # set $(Project) to the name of the project (currently Ghc or Happy).
35
36 BIN_DIST_TMPDIR=$(shell pwd)
37 BIN_DIST_NAME=fptools
38
39 #
40 # list of toplevel directories to include in binary distrib.
41 #
42 BIN_DIST_MAIN_DIR=$($(Project)MainDir)
43 BIN_DIST_DIRS=$($(Project)BinDistDirs)
44
45 binary-dist:: binary-dist-pre
46
47 BIN_DIST_TOP= distrib/Makefile-bin.in \
48               distrib/configure-bin.in \
49               README \
50               distrib/INSTALL \
51               $(BIN_DIST_MAIN_DIR)/ANNOUNCE \
52               $(BIN_DIST_MAIN_DIR)/PATCHLEVEL \
53               $(BIN_DIST_MAIN_DIR)/RELEASE \
54               glafp-utils/mkdirhier/mkdirhier \
55               install-sh \
56               config.guess \
57               config.sub   \
58               aclocal.m4
59
60 binary-dist::
61         @for i in $(BIN_DIST_TOP); do \
62           if test -f "$$i"; then \
63              echo cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
64              cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
65           fi; \
66         done;
67         @echo "Configuring the Makefile for this project..."
68         touch $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
69         echo "package = $(ProjectNameShort)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
70         echo "version = $(ProjectVersion)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
71         echo "PACKAGE_SH_SCRIPTS = $($(Project)BinDistShScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
72         echo "PACKAGE_PRL_SCRIPTS = $($(Project)BinDistPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
73         echo "PACKAGE_LIB_PRL_SCRIPTS = $($(Project)BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
74         echo "PACKAGE_BINS = $($(Project)BinDistBins)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
75         cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
76         @echo "Generating a shippable configure script.."
77         $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.in $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.in 
78         ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
79
80 #
81 # binary dist'ing the documentation.  
82 # Which documentation to build/install is hardcoded below.
83 #
84
85 BINDIST_DOCS = $($(Project)BinDistDocs)
86 BINDIST_DOCS_WAYS = html info dvi
87
88 binary-dist ::
89         @for way in $(BINDIST_DOCS_WAYS); do \
90            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way/$(ProjectNameShort)-$(ProjectVersion); \
91            for dir in $(BINDIST_DOCS); do \
92              echo Making $$way documentation in $$dir && \
93              $(MAKE) -C $$dir --no-print-directory $(MFLAGS) $$way && \
94              echo cp -f $$dir/*.$$way $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way/$(ProjectNameShort)-$(ProjectVersion) && \
95              cp -f $$dir/*.$$way $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way/$(ProjectNameShort)-$(ProjectVersion) && \
96              echo "Done."; \
97            done; \
98         done
99
100 # Rename scripts to $i.prl and $i.sh where necessary.
101 # ToDo: do this in a cleaner way...
102
103 ifneq "$($(Project)BinDistPrlScripts)" ""
104 binary-dist::
105         @for i in $($(Project)BinDistPrlScripts); do \
106              echo "Renaming $$i to $$i.prl"; \
107             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i.prl; \
108         done
109 endif
110
111 ifneq "$($(Project)BinDistLibPrlScripts)" ""
112 binary-dist::
113         @for i in $($(Project)BinDistLibPrlScripts); do \
114              echo "Renaming $$i to $$i.prl"; \
115             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i.prl; \
116         done
117 endif
118
119 ifneq "$($(Project)BinDistShScripts)" ""
120 binary-dist::
121         @for i in $($(Project)BinDistShScripts); do \
122              echo "Renaming $$i to $$i.sh"; \
123             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i.sh; \
124         done
125 endif
126
127 dist :: dist-pre
128 include $(TOP)/mk/target.mk
129 dist :: dist-post
130
131 binary-dist::
132         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"