[project @ 1997-12-16 12:16:11 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 = $@
18 SUBDIRS = $(shell if (test x$(CURRENT_TARGET) = xinstall) ; then echo $(ProjectsToInstall); else echo $(ProjectsToBuild); fi)
19
20 #
21 # Files to include in fptools source distribution
22 #
23 SRC_DIST_DIRS += mk docs CONTRIB distrib $(ProjectsToBuild)
24 SRC_DIST_FILES += configure.in config.guess config.sub configure aclocal.m4 README INSTALL Makefile install-sh
25
26 #
27 # Making a binary distribution
28 #
29 # To make a particular binary distribution: 
30 # set $(Project) to the name of the project (currently Ghc or Happy).
31
32 BIN_DIST_TMPDIR=$(shell pwd)
33 BIN_DIST_NAME=fptools
34
35 #
36 # list of toplevel directories to include in binary distrib.
37 #
38 BIN_DIST_MAIN_DIR=$($(Project)MainDir)
39 BIN_DIST_DIRS=$($(Project)BinDistDirs)
40
41 binary-dist:: binary-dist-pre
42
43 BIN_DIST_TOP= distrib/Makefile-bin.in \
44               distrib/configure-bin.in \
45               README \
46               distrib/INSTALL \
47               $(BIN_DIST_MAIN_DIR)/ANNOUNCE \
48               $(BIN_DIST_MAIN_DIR)/PATCHLEVEL \
49               $(BIN_DIST_MAIN_DIR)/RELEASE \
50               glafp-utils/mkdirhier/mkdirhier \
51               install-sh \
52               config.guess \
53               config.sub   \
54               aclocal.m4
55
56 binary-dist::
57         @for i in $(BIN_DIST_TOP); do \
58           if [ -e $$i ]; then \
59              echo cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
60              cp $$i $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); \
61           fi; \
62         done;
63         @echo "Configuring the Makefile for this project..."
64         touch $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
65         echo "project = $(ProjectNameShort)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
66         echo "version = $(ProjectVersion)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
67         echo "PACKAGE_SH_SCRIPTS = $($(Project)BinDistShScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
68         echo "PACKAGE_PRL_SCRIPTS = $($(Project)BinDistPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
69         echo "PACKAGE_LIB_PRL_SCRIPTS = $($(Project)BinDistLibPrlScripts)" >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
70         cat $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile-bin.in >> $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/Makefile.in
71         @echo "Generating a shippable configure script.."
72         $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure-bin.in $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/configure.in 
73         ( cd $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME); autoconf )
74
75 #
76 # binary dist'ing the documentation.  
77 # Which documentation to build/install is hardcoded below.
78 #
79
80 BINDIST_DOCS = $($(Project)BinDistDocs)
81 BINDIST_DOCS_WAYS = html info dvi
82
83 binary-dist ::
84         @for way in $(BINDIST_DOCS_WAYS); do \
85            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way/$(ProjectNameShort)-$(ProjectVersion); \
86            for dir in $(BINDIST_DOCS); do \
87              echo Making $$way documentation in $$dir && \
88              $(MAKE) -C $$dir --no-print-directory $(MFLAGS) $$way && \
89              echo cp -f $$dir/*.$$way $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way/$(ProjectNameShort)-$(ProjectVersion) && \
90              cp -f $$dir/*.$$way $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/$$way/$(ProjectNameShort)-$(ProjectVersion) && \
91              echo "Done."; \
92            done; \
93         done
94
95 # Rename scripts to $i.prl and $i.sh where necessary.
96 # ToDo: do this in a cleaner way...
97
98 binary-dist::
99         @for i in $($(Project)BinDistPrlScripts); do \
100              echo "Renaming $$i to $$i.prl"; \
101             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i.prl; \
102         done
103         @for i in $($(Project)BinDistLibPrlScripts); do \
104              echo "Renaming $$i to $$i.prl"; \
105             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i.prl; \
106         done
107         @for i in $($(Project)BinDistShScripts); do \
108              echo "Renaming $$i to $$i.sh"; \
109             $(MV) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i  $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion)/$$i.sh; \
110         done
111
112 dist :: dist-pre
113 include $(TOP)/mk/target.mk
114 dist :: dist-post
115
116 binary-dist::
117         @echo "Mechanical and super-natty! Inspect the result and *if* happy; freeze, sell and get some sleep!"