Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / osf / wml / wmloutp1.c
1 /* 
2  *  @OSF_COPYRIGHT@
3  *  COPYRIGHT NOTICE
4  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
5  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
6  *  the full copyright text.
7 */ 
8 /* 
9  * HISTORY
10 */ 
11 #ifdef REV_INFO
12 #ifndef lint
13 static char rcsid[] = "$XConsortium: wmloutp1.c /main/7 1995/07/13 21:04:31 drk $"
14 #endif
15 #endif
16 /*
17 *  (c) Copyright 1989, 1990, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
18
19 /*
20  * This is the standard output module for creating the UIL compiler
21  * .h files.
22  */
23
24
25 #include "wml.h"
26
27
28 void wmlOutput ()
29
30 {
31
32 /*
33  * Output the .h files
34  */
35 wmlOutputHFiles ();
36 if ( wml_err_count > 0 ) return;
37
38 /*
39  * Output the keyword (token) tables
40  */
41 wmlOutputKeyWordFiles ();
42 if ( wml_err_count > 0 ) return;
43
44 /*
45  * Output the .mm files
46  */
47 wmlOutputMmFiles ();
48 if ( wml_err_count > 0 ) return;
49
50 return;
51
52 }
53