source: trunk/third/wcl/Imakefile @ 8837

Revision 8837, 1.4 KB checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8836, which included commits to RCS files with non-trunk default branches.
Line 
1#include "Wc.tmpl"
2
3XCOMM ##########################################################################
4XCOMM # Top level Imakefile for the Widget Creation Library Distribution,
5XCOMM # including Ari, Cri, Mri, and Ori.
6XCOMM #
7XCOMM # Author: David E. Smyth
8XCOMM # SccsID: %Z% %M% %I% %E% %U%
9XCOMM ###########################################################################
10
11#define IHaveSubdirs
12
13/*
14 * It is absolutely essential that sub-directories with libraries
15 * come before subdirectories which link against the libraries!
16 */
17
18#if HaveAthenaWidgetSet
19     WcATHENA = Xp Ari
20#endif
21
22#if HaveMotifWidgetSet
23#if HaveMotifHacks
24     WcMOTIF = Xmp Mri Xmx Xri
25#else
26     WcMOTIF = Xmp Mri
27#endif
28#endif
29
30#if HaveOpenLookWidgetSet
31     WcOPEN_LOOK = Xop Ori
32#endif
33
34 SUBDIRS = Wc $(WcATHENA) $(WcCORNELL) $(WcMOTIF) $(WcOPEN_LOOK) $(WcSTUFF)
35
36NamedTargetSubdirs(all,$(SUBDIRS),"making",,all)
37
38World:
39        @echo ""
40        @echo "Building Release 2.7 of Wcl - the Widget Creation Library"
41        @echo ""
42        @echo "###############################################"
43        @echo "# I trust you first set parameters in Wc.tmpl #"
44        @echo "###############################################"
45        @echo ""
46        @date
47        @echo ""
48        $(MAKE) $(MFLAGS) Makefile
49        $(MAKE) $(MFLAGS) Makefiles
50        $(MAKE) $(MFLAGS) clean
51        $(MAKE) $(MFLAGS) includes
52        $(MAKE) $(MFLAGS) depend
53        $(MAKE) all
54
55DependSubdirs($(SUBDIRS))
56
57#if NeedLocal_strings_h
58includes:: ./strings.h
59
60./strings.h:
61        $(GET_LOCAL_STRINGS_H)
62#endif
Note: See TracBrowser for help on using the repository browser.