wined3d: Add Nvidia 9700M GT.
[wine.git] / tools / makedep.c
blob6d0c0fc24cff23cde0547502c332521648c1a1f0
1 /*
2 * Generate include file dependencies
4 * Copyright 1996, 2013 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #define NO_LIBWINE_PORT
23 #include "wine/port.h"
25 #include <assert.h>
26 #include <ctype.h>
27 #include <errno.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <stdarg.h>
31 #include <signal.h>
32 #include <string.h>
33 #ifdef HAVE_UNISTD_H
34 # include <unistd.h>
35 #endif
36 #include "wine/list.h"
38 enum incl_type
40 INCL_NORMAL, /* #include "foo.h" */
41 INCL_SYSTEM, /* #include <foo.h> */
42 INCL_IMPORT, /* idl import "foo.idl" */
43 INCL_IMPORTLIB, /* idl importlib "foo.tlb" */
44 INCL_CPP_QUOTE, /* idl cpp_quote("#include \"foo.h\"") */
45 INCL_CPP_QUOTE_SYSTEM /* idl cpp_quote("#include <foo.h>") */
48 struct dependency
50 int line; /* source line where this header is included */
51 enum incl_type type; /* type of include */
52 char *name; /* header name */
55 struct file
57 struct list entry;
58 char *name; /* full file name relative to cwd */
59 void *args; /* custom arguments for makefile rule */
60 unsigned int flags; /* flags (see below) */
61 unsigned int deps_count; /* files in use */
62 unsigned int deps_size; /* total allocated size */
63 struct dependency *deps; /* all header dependencies */
66 struct incl_file
68 struct list entry;
69 struct file *file;
70 char *name;
71 char *filename;
72 char *sourcename; /* source file name for generated headers */
73 struct incl_file *included_by; /* file that included this one */
74 int included_line; /* line where this file was included */
75 enum incl_type type; /* type of include */
76 struct incl_file *owner;
77 unsigned int files_count; /* files in use */
78 unsigned int files_size; /* total allocated size */
79 struct incl_file **files;
82 #define FLAG_GENERATED 0x000001 /* generated file */
83 #define FLAG_INSTALL 0x000002 /* file to install */
84 #define FLAG_IDL_PROXY 0x000100 /* generates a proxy (_p.c) file */
85 #define FLAG_IDL_CLIENT 0x000200 /* generates a client (_c.c) file */
86 #define FLAG_IDL_SERVER 0x000400 /* generates a server (_s.c) file */
87 #define FLAG_IDL_IDENT 0x000800 /* generates an ident (_i.c) file */
88 #define FLAG_IDL_REGISTER 0x001000 /* generates a registration (_r.res) file */
89 #define FLAG_IDL_TYPELIB 0x002000 /* generates a typelib (.tlb) file */
90 #define FLAG_IDL_REGTYPELIB 0x004000 /* generates a registered typelib (_t.res) file */
91 #define FLAG_IDL_HEADER 0x008000 /* generates a header (.h) file */
92 #define FLAG_RC_PO 0x010000 /* rc file contains translations */
93 #define FLAG_C_IMPLIB 0x020000 /* file is part of an import library */
94 #define FLAG_SFD_FONTS 0x040000 /* sfd file generated bitmap fonts */
96 static const struct
98 unsigned int flag;
99 const char *ext;
100 } idl_outputs[] =
102 { FLAG_IDL_TYPELIB, ".tlb" },
103 { FLAG_IDL_REGTYPELIB, "_t.res" },
104 { FLAG_IDL_CLIENT, "_c.c" },
105 { FLAG_IDL_IDENT, "_i.c" },
106 { FLAG_IDL_PROXY, "_p.c" },
107 { FLAG_IDL_SERVER, "_s.c" },
108 { FLAG_IDL_REGISTER, "_r.res" },
109 { FLAG_IDL_HEADER, ".h" }
112 #define HASH_SIZE 997
114 static struct list files[HASH_SIZE];
116 struct strarray
118 unsigned int count; /* strings in use */
119 unsigned int size; /* total allocated size */
120 const char **str;
123 static const struct strarray empty_strarray;
125 enum install_rules { INSTALL_LIB, INSTALL_DEV, NB_INSTALL_RULES };
127 /* variables common to all makefiles */
128 static struct strarray linguas;
129 static struct strarray dll_flags;
130 static struct strarray target_flags;
131 static struct strarray msvcrt_flags;
132 static struct strarray extra_cflags;
133 static struct strarray cpp_flags;
134 static struct strarray unwind_flags;
135 static struct strarray libs;
136 static struct strarray cmdline_vars;
137 static struct strarray disabled_dirs;
138 static const char *root_src_dir;
139 static const char *tools_dir;
140 static const char *tools_ext;
141 static const char *exe_ext;
142 static const char *dll_ext;
143 static const char *man_ext;
144 static const char *crosstarget;
145 static const char *fontforge;
146 static const char *convert;
147 static const char *rsvg;
148 static const char *icotool;
149 static const char *dlltool;
150 static const char *msgfmt;
151 static const char *ln_s;
153 struct makefile
155 struct strarray vars;
156 struct strarray include_paths;
157 struct strarray define_args;
158 struct strarray programs;
159 struct strarray scripts;
160 struct strarray appmode;
161 struct strarray imports;
162 struct strarray subdirs;
163 struct strarray delayimports;
164 struct strarray extradllflags;
165 struct strarray install_lib;
166 struct strarray install_dev;
167 struct list sources;
168 struct list includes;
169 const char *base_dir;
170 const char *src_dir;
171 const char *obj_dir;
172 const char *top_src_dir;
173 const char *top_obj_dir;
174 const char *parent_dir;
175 const char *module;
176 const char *testdll;
177 const char *sharedlib;
178 const char *staticlib;
179 const char *staticimplib;
180 const char *importlib;
181 int disabled;
182 int use_msvcrt;
183 int is_win16;
184 struct makefile **submakes;
187 static struct makefile *top_makefile;
189 static const char separator[] = "### Dependencies";
190 static const char *output_makefile_name = "Makefile";
191 static const char *input_file_name;
192 static const char *output_file_name;
193 static const char *temp_file_name;
194 static int relative_dir_mode;
195 static int input_line;
196 static int output_column;
197 static FILE *output_file;
199 static const char Usage[] =
200 "Usage: makedep [options] [directories]\n"
201 "Options:\n"
202 " -R from to Compute the relative path between two directories\n"
203 " -fxxx Store output in file 'xxx' (default: Makefile)\n";
206 #ifndef __GNUC__
207 #define __attribute__(x)
208 #endif
210 static void fatal_error( const char *msg, ... ) __attribute__ ((__format__ (__printf__, 1, 2)));
211 static void fatal_perror( const char *msg, ... ) __attribute__ ((__format__ (__printf__, 1, 2)));
212 static void output( const char *format, ... ) __attribute__ ((__format__ (__printf__, 1, 2)));
213 static char *strmake( const char* fmt, ... ) __attribute__ ((__format__ (__printf__, 1, 2)));
215 /*******************************************************************
216 * fatal_error
218 static void fatal_error( const char *msg, ... )
220 va_list valist;
221 va_start( valist, msg );
222 if (input_file_name)
224 fprintf( stderr, "%s:", input_file_name );
225 if (input_line) fprintf( stderr, "%d:", input_line );
226 fprintf( stderr, " error: " );
228 else fprintf( stderr, "makedep: error: " );
229 vfprintf( stderr, msg, valist );
230 va_end( valist );
231 exit(1);
235 /*******************************************************************
236 * fatal_perror
238 static void fatal_perror( const char *msg, ... )
240 va_list valist;
241 va_start( valist, msg );
242 if (input_file_name)
244 fprintf( stderr, "%s:", input_file_name );
245 if (input_line) fprintf( stderr, "%d:", input_line );
246 fprintf( stderr, " error: " );
248 else fprintf( stderr, "makedep: error: " );
249 vfprintf( stderr, msg, valist );
250 perror( " " );
251 va_end( valist );
252 exit(1);
256 /*******************************************************************
257 * cleanup_files
259 static void cleanup_files(void)
261 if (temp_file_name) unlink( temp_file_name );
262 if (output_file_name) unlink( output_file_name );
266 /*******************************************************************
267 * exit_on_signal
269 static void exit_on_signal( int sig )
271 exit( 1 ); /* this will call the atexit functions */
275 /*******************************************************************
276 * xmalloc
278 static void *xmalloc( size_t size )
280 void *res;
281 if (!(res = malloc (size ? size : 1)))
282 fatal_error( "Virtual memory exhausted.\n" );
283 return res;
287 /*******************************************************************
288 * xrealloc
290 static void *xrealloc (void *ptr, size_t size)
292 void *res;
293 assert( size );
294 if (!(res = realloc( ptr, size )))
295 fatal_error( "Virtual memory exhausted.\n" );
296 return res;
299 /*******************************************************************
300 * xstrdup
302 static char *xstrdup( const char *str )
304 char *res = strdup( str );
305 if (!res) fatal_error( "Virtual memory exhausted.\n" );
306 return res;
310 /*******************************************************************
311 * strmake
313 static char *strmake( const char* fmt, ... )
315 int n;
316 size_t size = 100;
317 va_list ap;
319 for (;;)
321 char *p = xmalloc (size);
322 va_start(ap, fmt);
323 n = vsnprintf (p, size, fmt, ap);
324 va_end(ap);
325 if (n == -1) size *= 2;
326 else if ((size_t)n >= size) size = n + 1;
327 else return xrealloc( p, n + 1 );
328 free(p);
333 /*******************************************************************
334 * strendswith
336 static int strendswith( const char* str, const char* end )
338 size_t l = strlen( str );
339 size_t m = strlen( end );
341 return l >= m && strcmp(str + l - m, end) == 0;
345 /*******************************************************************
346 * output
348 static void output( const char *format, ... )
350 int ret;
351 va_list valist;
353 va_start( valist, format );
354 ret = vfprintf( output_file, format, valist );
355 va_end( valist );
356 if (ret < 0) fatal_perror( "output" );
357 if (format[0] && format[strlen(format) - 1] == '\n') output_column = 0;
358 else output_column += ret;
362 /*******************************************************************
363 * strarray_add
365 static void strarray_add( struct strarray *array, const char *str )
367 if (array->count == array->size)
369 if (array->size) array->size *= 2;
370 else array->size = 16;
371 array->str = xrealloc( array->str, sizeof(array->str[0]) * array->size );
373 array->str[array->count++] = str;
377 /*******************************************************************
378 * strarray_addall
380 static void strarray_addall( struct strarray *array, struct strarray added )
382 unsigned int i;
384 for (i = 0; i < added.count; i++) strarray_add( array, added.str[i] );
388 /*******************************************************************
389 * strarray_exists
391 static int strarray_exists( const struct strarray *array, const char *str )
393 unsigned int i;
395 for (i = 0; i < array->count; i++) if (!strcmp( array->str[i], str )) return 1;
396 return 0;
400 /*******************************************************************
401 * strarray_add_uniq
403 static void strarray_add_uniq( struct strarray *array, const char *str )
405 if (!strarray_exists( array, str )) strarray_add( array, str );
409 /*******************************************************************
410 * strarray_get_value
412 * Find a value in a name/value pair string array.
414 static const char *strarray_get_value( const struct strarray *array, const char *name )
416 int pos, res, min = 0, max = array->count / 2 - 1;
418 while (min <= max)
420 pos = (min + max) / 2;
421 if (!(res = strcmp( array->str[pos * 2], name ))) return array->str[pos * 2 + 1];
422 if (res < 0) min = pos + 1;
423 else max = pos - 1;
425 return NULL;
429 /*******************************************************************
430 * strarray_set_value
432 * Define a value in a name/value pair string array.
434 static void strarray_set_value( struct strarray *array, const char *name, const char *value )
436 int i, pos, res, min = 0, max = array->count / 2 - 1;
438 while (min <= max)
440 pos = (min + max) / 2;
441 if (!(res = strcmp( array->str[pos * 2], name )))
443 /* redefining a variable replaces the previous value */
444 array->str[pos * 2 + 1] = value;
445 return;
447 if (res < 0) min = pos + 1;
448 else max = pos - 1;
450 strarray_add( array, NULL );
451 strarray_add( array, NULL );
452 for (i = array->count - 1; i > min * 2 + 1; i--) array->str[i] = array->str[i - 2];
453 array->str[min * 2] = name;
454 array->str[min * 2 + 1] = value;
458 /*******************************************************************
459 * output_filename
461 static void output_filename( const char *name )
463 if (output_column + strlen(name) + 1 > 100)
465 output( " \\\n" );
466 output( " " );
468 else if (output_column) output( " " );
469 output( "%s", name );
473 /*******************************************************************
474 * output_filenames
476 static void output_filenames( struct strarray array )
478 unsigned int i;
480 for (i = 0; i < array.count; i++) output_filename( array.str[i] );
484 /*******************************************************************
485 * get_extension
487 static char *get_extension( char *filename )
489 char *ext = strrchr( filename, '.' );
490 if (ext && strchr( ext, '/' )) ext = NULL;
491 return ext;
495 /*******************************************************************
496 * replace_extension
498 static char *replace_extension( const char *name, const char *old_ext, const char *new_ext )
500 char *ret;
501 size_t name_len = strlen( name );
502 size_t ext_len = strlen( old_ext );
504 if (name_len >= ext_len && !strcmp( name + name_len - ext_len, old_ext )) name_len -= ext_len;
505 ret = xmalloc( name_len + strlen( new_ext ) + 1 );
506 memcpy( ret, name, name_len );
507 strcpy( ret + name_len, new_ext );
508 return ret;
512 /*******************************************************************
513 * replace_filename
515 static char *replace_filename( const char *path, const char *name )
517 const char *p;
518 char *ret;
519 size_t len;
521 if (!path) return xstrdup( name );
522 if (!(p = strrchr( path, '/' ))) return xstrdup( name );
523 len = p - path + 1;
524 ret = xmalloc( len + strlen( name ) + 1 );
525 memcpy( ret, path, len );
526 strcpy( ret + len, name );
527 return ret;
531 /*******************************************************************
532 * strarray_replace_extension
534 static struct strarray strarray_replace_extension( const struct strarray *array,
535 const char *old_ext, const char *new_ext )
537 unsigned int i;
538 struct strarray ret;
540 ret.count = ret.size = array->count;
541 ret.str = xmalloc( sizeof(ret.str[0]) * ret.size );
542 for (i = 0; i < array->count; i++) ret.str[i] = replace_extension( array->str[i], old_ext, new_ext );
543 return ret;
547 /*******************************************************************
548 * replace_substr
550 static char *replace_substr( const char *str, const char *start, size_t len, const char *replace )
552 size_t pos = start - str;
553 char *ret = xmalloc( pos + strlen(replace) + strlen(start + len) + 1 );
554 memcpy( ret, str, pos );
555 strcpy( ret + pos, replace );
556 strcat( ret + pos, start + len );
557 return ret;
561 /*******************************************************************
562 * get_relative_path
564 * Determine where the destination path is located relative to the 'from' path.
566 static char *get_relative_path( const char *from, const char *dest )
568 const char *start;
569 char *ret, *p;
570 unsigned int dotdots = 0;
572 /* a path of "." is equivalent to an empty path */
573 if (!strcmp( from, "." )) from = "";
575 for (;;)
577 while (*from == '/') from++;
578 while (*dest == '/') dest++;
579 start = dest; /* save start of next path element */
580 if (!*from) break;
582 while (*from && *from != '/' && *from == *dest) { from++; dest++; }
583 if ((!*from || *from == '/') && (!*dest || *dest == '/')) continue;
585 /* count remaining elements in 'from' */
588 dotdots++;
589 while (*from && *from != '/') from++;
590 while (*from == '/') from++;
592 while (*from);
593 break;
596 if (!start[0] && !dotdots) return NULL; /* empty path */
598 ret = xmalloc( 3 * dotdots + strlen( start ) + 1 );
599 for (p = ret; dotdots; dotdots--, p += 3) memcpy( p, "../", 3 );
601 if (start[0]) strcpy( p, start );
602 else p[-1] = 0; /* remove trailing slash */
603 return ret;
607 /*******************************************************************
608 * concat_paths
610 static char *concat_paths( const char *base, const char *path )
612 if (!base || !base[0]) return xstrdup( path && path[0] ? path : "." );
613 if (!path || !path[0]) return xstrdup( base );
614 if (path[0] == '/') return xstrdup( path );
615 return strmake( "%s/%s", base, path );
619 /*******************************************************************
620 * base_dir_path
622 static char *base_dir_path( const struct makefile *make, const char *path )
624 return concat_paths( make->base_dir, path );
628 /*******************************************************************
629 * obj_dir_path
631 static char *obj_dir_path( const struct makefile *make, const char *path )
633 return concat_paths( make->obj_dir, path );
637 /*******************************************************************
638 * src_dir_path
640 static char *src_dir_path( const struct makefile *make, const char *path )
642 if (make->src_dir) return concat_paths( make->src_dir, path );
643 return obj_dir_path( make, path );
647 /*******************************************************************
648 * top_obj_dir_path
650 static char *top_obj_dir_path( const struct makefile *make, const char *path )
652 return concat_paths( make->top_obj_dir, path );
656 /*******************************************************************
657 * top_src_dir_path
659 static char *top_src_dir_path( const struct makefile *make, const char *path )
661 if (make->top_src_dir) return concat_paths( make->top_src_dir, path );
662 return top_obj_dir_path( make, path );
666 /*******************************************************************
667 * root_dir_path
669 static char *root_dir_path( const char *path )
671 return concat_paths( root_src_dir, path );
675 /*******************************************************************
676 * tools_dir_path
678 static char *tools_dir_path( const struct makefile *make, const char *path )
680 if (tools_dir) return top_obj_dir_path( make, strmake( "%s/tools/%s", tools_dir, path ));
681 return top_obj_dir_path( make, strmake( "tools/%s", path ));
685 /*******************************************************************
686 * tools_path
688 static char *tools_path( const struct makefile *make, const char *name )
690 return strmake( "%s/%s%s", tools_dir_path( make, name ), name, tools_ext );
694 /*******************************************************************
695 * get_line
697 static char *get_line( FILE *file )
699 static char *buffer;
700 static size_t size;
702 if (!size)
704 size = 1024;
705 buffer = xmalloc( size );
707 if (!fgets( buffer, size, file )) return NULL;
708 input_line++;
710 for (;;)
712 char *p = buffer + strlen(buffer);
713 /* if line is larger than buffer, resize buffer */
714 while (p == buffer + size - 1 && p[-1] != '\n')
716 buffer = xrealloc( buffer, size * 2 );
717 if (!fgets( buffer + size - 1, size + 1, file )) break;
718 p = buffer + strlen(buffer);
719 size *= 2;
721 if (p > buffer && p[-1] == '\n')
723 *(--p) = 0;
724 if (p > buffer && p[-1] == '\r') *(--p) = 0;
725 if (p > buffer && p[-1] == '\\')
727 *(--p) = 0;
728 /* line ends in backslash, read continuation line */
729 if (!fgets( p, size - (p - buffer), file )) return buffer;
730 input_line++;
731 continue;
734 return buffer;
739 /*******************************************************************
740 * hash_filename
742 static unsigned int hash_filename( const char *name )
744 /* FNV-1 hash */
745 unsigned int ret = 2166136261u;
746 while (*name) ret = (ret * 16777619) ^ *name++;
747 return ret % HASH_SIZE;
751 /*******************************************************************
752 * add_file
754 static struct file *add_file( const char *name )
756 struct file *file = xmalloc( sizeof(*file) );
757 memset( file, 0, sizeof(*file) );
758 file->name = xstrdup( name );
759 return file;
763 /*******************************************************************
764 * add_dependency
766 static void add_dependency( struct file *file, const char *name, enum incl_type type )
768 /* enforce some rules for the Wine tree */
770 if (!memcmp( name, "../", 3 ))
771 fatal_error( "#include directive with relative path not allowed\n" );
773 if (!strcmp( name, "config.h" ))
775 if (strendswith( file->name, ".h" ))
776 fatal_error( "config.h must not be included by a header file\n" );
777 if (file->deps_count)
778 fatal_error( "config.h must be included before anything else\n" );
780 else if (!strcmp( name, "wine/port.h" ))
782 if (strendswith( file->name, ".h" ))
783 fatal_error( "wine/port.h must not be included by a header file\n" );
784 if (!file->deps_count) fatal_error( "config.h must be included before wine/port.h\n" );
785 if (file->deps_count > 1)
786 fatal_error( "wine/port.h must be included before everything except config.h\n" );
787 if (strcmp( file->deps[0].name, "config.h" ))
788 fatal_error( "config.h must be included before wine/port.h\n" );
791 if (file->deps_count >= file->deps_size)
793 file->deps_size *= 2;
794 if (file->deps_size < 16) file->deps_size = 16;
795 file->deps = xrealloc( file->deps, file->deps_size * sizeof(*file->deps) );
797 file->deps[file->deps_count].line = input_line;
798 file->deps[file->deps_count].type = type;
799 file->deps[file->deps_count].name = xstrdup( name );
800 file->deps_count++;
804 /*******************************************************************
805 * find_src_file
807 static struct incl_file *find_src_file( const struct makefile *make, const char *name )
809 struct incl_file *file;
811 LIST_FOR_EACH_ENTRY( file, &make->sources, struct incl_file, entry )
812 if (!strcmp( name, file->name )) return file;
813 return NULL;
816 /*******************************************************************
817 * find_include_file
819 static struct incl_file *find_include_file( const struct makefile *make, const char *name )
821 struct incl_file *file;
823 LIST_FOR_EACH_ENTRY( file, &make->includes, struct incl_file, entry )
824 if (!strcmp( name, file->name )) return file;
825 return NULL;
828 /*******************************************************************
829 * add_include
831 * Add an include file if it doesn't already exists.
833 static struct incl_file *add_include( struct makefile *make, struct incl_file *parent,
834 const char *name, int line, enum incl_type type )
836 struct incl_file *include;
838 if (parent->files_count >= parent->files_size)
840 parent->files_size *= 2;
841 if (parent->files_size < 16) parent->files_size = 16;
842 parent->files = xrealloc( parent->files, parent->files_size * sizeof(*parent->files) );
845 LIST_FOR_EACH_ENTRY( include, &make->includes, struct incl_file, entry )
846 if (!strcmp( name, include->name )) goto found;
848 include = xmalloc( sizeof(*include) );
849 memset( include, 0, sizeof(*include) );
850 include->name = xstrdup(name);
851 include->included_by = parent;
852 include->included_line = line;
853 include->type = type;
854 list_add_tail( &make->includes, &include->entry );
855 found:
856 parent->files[parent->files_count++] = include;
857 return include;
861 /*******************************************************************
862 * add_generated_source
864 * Add a generated source file to the list.
866 static struct incl_file *add_generated_source( struct makefile *make,
867 const char *name, const char *filename )
869 struct incl_file *file;
871 if ((file = find_src_file( make, name ))) return file; /* we already have it */
872 file = xmalloc( sizeof(*file) );
873 memset( file, 0, sizeof(*file) );
874 file->file = add_file( name );
875 file->name = xstrdup( name );
876 file->filename = obj_dir_path( make, filename ? filename : name );
877 file->file->flags = FLAG_GENERATED;
878 list_add_tail( &make->sources, &file->entry );
879 return file;
883 /*******************************************************************
884 * parse_include_directive
886 static void parse_include_directive( struct file *source, char *str )
888 char quote, *include, *p = str;
890 while (*p && isspace(*p)) p++;
891 if (*p != '\"' && *p != '<' ) return;
892 quote = *p++;
893 if (quote == '<') quote = '>';
894 include = p;
895 while (*p && (*p != quote)) p++;
896 if (!*p) fatal_error( "malformed include directive '%s'\n", str );
897 *p = 0;
898 add_dependency( source, include, (quote == '>') ? INCL_SYSTEM : INCL_NORMAL );
902 /*******************************************************************
903 * parse_pragma_directive
905 static void parse_pragma_directive( struct file *source, char *str )
907 char *flag, *p = str;
909 if (!isspace( *p )) return;
910 while (*p && isspace(*p)) p++;
911 p = strtok( p, " \t" );
912 if (strcmp( p, "makedep" )) return;
914 while ((flag = strtok( NULL, " \t" )))
916 if (!strcmp( flag, "depend" ))
918 while ((p = strtok( NULL, " \t" ))) add_dependency( source, p, INCL_NORMAL );
919 return;
921 else if (!strcmp( flag, "install" )) source->flags |= FLAG_INSTALL;
923 if (strendswith( source->name, ".idl" ))
925 if (!strcmp( flag, "header" )) source->flags |= FLAG_IDL_HEADER;
926 else if (!strcmp( flag, "proxy" )) source->flags |= FLAG_IDL_PROXY;
927 else if (!strcmp( flag, "client" )) source->flags |= FLAG_IDL_CLIENT;
928 else if (!strcmp( flag, "server" )) source->flags |= FLAG_IDL_SERVER;
929 else if (!strcmp( flag, "ident" )) source->flags |= FLAG_IDL_IDENT;
930 else if (!strcmp( flag, "typelib" )) source->flags |= FLAG_IDL_TYPELIB;
931 else if (!strcmp( flag, "register" )) source->flags |= FLAG_IDL_REGISTER;
932 else if (!strcmp( flag, "regtypelib" )) source->flags |= FLAG_IDL_REGTYPELIB;
934 else if (strendswith( source->name, ".rc" ))
936 if (!strcmp( flag, "po" )) source->flags |= FLAG_RC_PO;
938 else if (strendswith( source->name, ".sfd" ))
940 if (!strcmp( flag, "font" ))
942 struct strarray *array = source->args;
944 if (!array)
946 source->args = array = xmalloc( sizeof(*array) );
947 *array = empty_strarray;
948 source->flags |= FLAG_SFD_FONTS;
950 strarray_add( array, xstrdup( strtok( NULL, "" )));
951 return;
954 else if (!strcmp( flag, "implib" )) source->flags |= FLAG_C_IMPLIB;
959 /*******************************************************************
960 * parse_cpp_directive
962 static void parse_cpp_directive( struct file *source, char *str )
964 while (*str && isspace(*str)) str++;
965 if (*str++ != '#') return;
966 while (*str && isspace(*str)) str++;
968 if (!strncmp( str, "include", 7 ))
969 parse_include_directive( source, str + 7 );
970 else if (!strncmp( str, "import", 6 ) && strendswith( source->name, ".m" ))
971 parse_include_directive( source, str + 6 );
972 else if (!strncmp( str, "pragma", 6 ))
973 parse_pragma_directive( source, str + 6 );
977 /*******************************************************************
978 * parse_idl_file
980 static void parse_idl_file( struct file *source, FILE *file )
982 char *buffer, *include;
984 input_line = 0;
986 while ((buffer = get_line( file )))
988 char quote;
989 char *p = buffer;
990 while (*p && isspace(*p)) p++;
992 if (!strncmp( p, "importlib", 9 ))
994 p += 9;
995 while (*p && isspace(*p)) p++;
996 if (*p++ != '(') continue;
997 while (*p && isspace(*p)) p++;
998 if (*p++ != '"') continue;
999 include = p;
1000 while (*p && (*p != '"')) p++;
1001 if (!*p) fatal_error( "malformed importlib directive\n" );
1002 *p = 0;
1003 add_dependency( source, include, INCL_IMPORTLIB );
1004 continue;
1007 if (!strncmp( p, "import", 6 ))
1009 p += 6;
1010 while (*p && isspace(*p)) p++;
1011 if (*p != '"') continue;
1012 include = ++p;
1013 while (*p && (*p != '"')) p++;
1014 if (!*p) fatal_error( "malformed import directive\n" );
1015 *p = 0;
1016 add_dependency( source, include, INCL_IMPORT );
1017 continue;
1020 /* check for #include inside cpp_quote */
1021 if (!strncmp( p, "cpp_quote", 9 ))
1023 p += 9;
1024 while (*p && isspace(*p)) p++;
1025 if (*p++ != '(') continue;
1026 while (*p && isspace(*p)) p++;
1027 if (*p++ != '"') continue;
1028 if (*p++ != '#') continue;
1029 while (*p && isspace(*p)) p++;
1030 if (strncmp( p, "include", 7 )) continue;
1031 p += 7;
1032 while (*p && isspace(*p)) p++;
1033 if (*p == '\\' && p[1] == '"')
1035 p += 2;
1036 quote = '"';
1038 else
1040 if (*p++ != '<' ) continue;
1041 quote = '>';
1043 include = p;
1044 while (*p && (*p != quote)) p++;
1045 if (!*p || (quote == '"' && p[-1] != '\\'))
1046 fatal_error( "malformed #include directive inside cpp_quote\n" );
1047 if (quote == '"') p--; /* remove backslash */
1048 *p = 0;
1049 add_dependency( source, include, (quote == '>') ? INCL_CPP_QUOTE_SYSTEM : INCL_CPP_QUOTE );
1050 continue;
1053 parse_cpp_directive( source, p );
1057 /*******************************************************************
1058 * parse_c_file
1060 static void parse_c_file( struct file *source, FILE *file )
1062 char *buffer;
1064 input_line = 0;
1065 while ((buffer = get_line( file )))
1067 parse_cpp_directive( source, buffer );
1072 /*******************************************************************
1073 * parse_rc_file
1075 static void parse_rc_file( struct file *source, FILE *file )
1077 char *buffer, *include;
1079 input_line = 0;
1080 while ((buffer = get_line( file )))
1082 char quote;
1083 char *p = buffer;
1084 while (*p && isspace(*p)) p++;
1086 if (p[0] == '/' && p[1] == '*') /* check for magic makedep comment */
1088 p += 2;
1089 while (*p && isspace(*p)) p++;
1090 if (strncmp( p, "@makedep:", 9 )) continue;
1091 p += 9;
1092 while (*p && isspace(*p)) p++;
1093 quote = '"';
1094 if (*p == quote)
1096 include = ++p;
1097 while (*p && *p != quote) p++;
1099 else
1101 include = p;
1102 while (*p && !isspace(*p) && *p != '*') p++;
1104 if (!*p)
1105 fatal_error( "malformed makedep comment\n" );
1106 *p = 0;
1107 add_dependency( source, include, (quote == '>') ? INCL_SYSTEM : INCL_NORMAL );
1108 continue;
1111 parse_cpp_directive( source, buffer );
1116 /*******************************************************************
1117 * parse_in_file
1119 static void parse_in_file( struct file *source, FILE *file )
1121 char *p, *buffer;
1123 /* make sure it gets rebuilt when the version changes */
1124 add_dependency( source, "config.h", INCL_SYSTEM );
1126 if (!strendswith( source->name, ".man.in" )) return; /* not a man page */
1128 input_line = 0;
1129 while ((buffer = get_line( file )))
1131 if (strncmp( buffer, ".TH", 3 )) continue;
1132 if (!(p = strtok( buffer, " \t" ))) continue; /* .TH */
1133 if (!(p = strtok( NULL, " \t" ))) continue; /* program name */
1134 if (!(p = strtok( NULL, " \t" ))) continue; /* man section */
1135 source->args = xstrdup( p );
1136 return;
1141 /*******************************************************************
1142 * parse_sfd_file
1144 static void parse_sfd_file( struct file *source, FILE *file )
1146 char *p, *eol, *buffer;
1148 input_line = 0;
1149 while ((buffer = get_line( file )))
1151 if (strncmp( buffer, "UComments:", 10 )) continue;
1152 p = buffer + 10;
1153 while (*p == ' ') p++;
1154 if (p[0] == '"' && p[1] && buffer[strlen(buffer) - 1] == '"')
1156 p++;
1157 buffer[strlen(buffer) - 1] = 0;
1159 while ((eol = strstr( p, "+AAoA" )))
1161 *eol = 0;
1162 while (*p && isspace(*p)) p++;
1163 if (*p++ == '#')
1165 while (*p && isspace(*p)) p++;
1166 if (!strncmp( p, "pragma", 6 )) parse_pragma_directive( source, p + 6 );
1168 p = eol + 5;
1170 while (*p && isspace(*p)) p++;
1171 if (*p++ != '#') return;
1172 while (*p && isspace(*p)) p++;
1173 if (!strncmp( p, "pragma", 6 )) parse_pragma_directive( source, p + 6 );
1174 return;
1179 static const struct
1181 const char *ext;
1182 void (*parse)( struct file *file, FILE *f );
1183 } parse_functions[] =
1185 { ".c", parse_c_file },
1186 { ".h", parse_c_file },
1187 { ".inl", parse_c_file },
1188 { ".l", parse_c_file },
1189 { ".m", parse_c_file },
1190 { ".rh", parse_c_file },
1191 { ".x", parse_c_file },
1192 { ".y", parse_c_file },
1193 { ".idl", parse_idl_file },
1194 { ".rc", parse_rc_file },
1195 { ".in", parse_in_file },
1196 { ".sfd", parse_sfd_file }
1199 /*******************************************************************
1200 * load_file
1202 static struct file *load_file( const char *name )
1204 struct file *file;
1205 FILE *f;
1206 unsigned int i, hash = hash_filename( name );
1208 LIST_FOR_EACH_ENTRY( file, &files[hash], struct file, entry )
1209 if (!strcmp( name, file->name )) return file;
1211 if (!(f = fopen( name, "r" ))) return NULL;
1213 file = add_file( name );
1214 list_add_tail( &files[hash], &file->entry );
1215 input_file_name = file->name;
1216 input_line = 0;
1218 for (i = 0; i < sizeof(parse_functions) / sizeof(parse_functions[0]); i++)
1220 if (!strendswith( name, parse_functions[i].ext )) continue;
1221 parse_functions[i].parse( file, f );
1222 break;
1225 fclose( f );
1226 input_file_name = NULL;
1228 return file;
1232 /*******************************************************************
1233 * open_include_path_file
1235 * Open a file from a directory on the include path.
1237 static struct file *open_include_path_file( const struct makefile *make, const char *dir,
1238 const char *name, char **filename )
1240 char *src_path = base_dir_path( make, concat_paths( dir, name ));
1241 struct file *ret = load_file( src_path );
1243 if (ret) *filename = src_dir_path( make, concat_paths( dir, name ));
1244 return ret;
1248 /*******************************************************************
1249 * open_file_same_dir
1251 * Open a file in the same directory as the parent.
1253 static struct file *open_file_same_dir( const struct incl_file *parent, const char *name, char **filename )
1255 char *src_path = replace_filename( parent->file->name, name );
1256 struct file *ret = load_file( src_path );
1258 if (ret) *filename = replace_filename( parent->filename, name );
1259 free( src_path );
1260 return ret;
1264 /*******************************************************************
1265 * open_local_file
1267 * Open a file in the source directory of the makefile.
1269 static struct file *open_local_file( const struct makefile *make, const char *path, char **filename )
1271 char *src_path = root_dir_path( base_dir_path( make, path ));
1272 struct file *ret = load_file( src_path );
1274 /* if not found, try parent dir */
1275 if (!ret && make->parent_dir)
1277 free( src_path );
1278 path = strmake( "%s/%s", make->parent_dir, path );
1279 src_path = root_dir_path( base_dir_path( make, path ));
1280 ret = load_file( src_path );
1283 if (ret) *filename = src_dir_path( make, path );
1284 free( src_path );
1285 return ret;
1289 /*******************************************************************
1290 * open_global_file
1292 * Open a file in the top-level source directory.
1294 static struct file *open_global_file( const struct makefile *make, const char *path, char **filename )
1296 char *src_path = root_dir_path( path );
1297 struct file *ret = load_file( src_path );
1299 if (ret) *filename = top_src_dir_path( make, path );
1300 free( src_path );
1301 return ret;
1305 /*******************************************************************
1306 * open_global_header
1308 * Open a file in the global include source directory.
1310 static struct file *open_global_header( const struct makefile *make, const char *path, char **filename )
1312 return open_global_file( make, strmake( "include/%s", path ), filename );
1316 /*******************************************************************
1317 * open_src_file
1319 static struct file *open_src_file( const struct makefile *make, struct incl_file *pFile )
1321 struct file *file = open_local_file( make, pFile->name, &pFile->filename );
1323 if (!file) fatal_perror( "open %s", pFile->name );
1324 return file;
1328 /*******************************************************************
1329 * open_include_file
1331 static struct file *open_include_file( const struct makefile *make, struct incl_file *pFile )
1333 struct file *file = NULL;
1334 char *filename;
1335 unsigned int i, len;
1337 errno = ENOENT;
1339 /* check for generated bison header */
1341 if (strendswith( pFile->name, ".tab.h" ) &&
1342 (file = open_local_file( make, replace_extension( pFile->name, ".tab.h", ".y" ), &filename )))
1344 pFile->sourcename = filename;
1345 pFile->filename = obj_dir_path( make, pFile->name );
1346 return file;
1349 /* check for corresponding idl file in source dir */
1351 if (strendswith( pFile->name, ".h" ) &&
1352 (file = open_local_file( make, replace_extension( pFile->name, ".h", ".idl" ), &filename )))
1354 pFile->sourcename = filename;
1355 pFile->filename = obj_dir_path( make, pFile->name );
1356 return file;
1359 /* check for corresponding tlb file in source dir */
1361 if (strendswith( pFile->name, ".tlb" ) &&
1362 (file = open_local_file( make, replace_extension( pFile->name, ".tlb", ".idl" ), &filename )))
1364 pFile->sourcename = filename;
1365 pFile->filename = obj_dir_path( make, pFile->name );
1366 return file;
1369 /* now try in source dir */
1370 if ((file = open_local_file( make, pFile->name, &pFile->filename ))) return file;
1372 /* check for corresponding idl file in global includes */
1374 if (strendswith( pFile->name, ".h" ) &&
1375 (file = open_global_header( make, replace_extension( pFile->name, ".h", ".idl" ), &filename )))
1377 pFile->sourcename = filename;
1378 pFile->filename = top_obj_dir_path( make, strmake( "include/%s", pFile->name ));
1379 return file;
1382 /* check for corresponding .in file in global includes (for config.h.in) */
1384 if (strendswith( pFile->name, ".h" ) &&
1385 (file = open_global_header( make, replace_extension( pFile->name, ".h", ".h.in" ), &filename )))
1387 pFile->sourcename = filename;
1388 pFile->filename = top_obj_dir_path( make, strmake( "include/%s", pFile->name ));
1389 return file;
1392 /* check for corresponding .x file in global includes */
1394 if (strendswith( pFile->name, "tmpl.h" ) &&
1395 (file = open_global_header( make, replace_extension( pFile->name, ".h", ".x" ), &filename )))
1397 pFile->sourcename = filename;
1398 pFile->filename = top_obj_dir_path( make, strmake( "include/%s", pFile->name ));
1399 return file;
1402 /* check for corresponding .tlb file in global includes */
1404 if (strendswith( pFile->name, ".tlb" ) &&
1405 (file = open_global_header( make, replace_extension( pFile->name, ".tlb", ".idl" ), &filename )))
1407 pFile->sourcename = filename;
1408 pFile->filename = top_obj_dir_path( make, strmake( "include/%s", pFile->name ));
1409 return file;
1412 /* check in global includes source dir */
1414 if ((file = open_global_header( make, pFile->name, &pFile->filename ))) return file;
1416 /* check in global msvcrt includes */
1417 if (make->use_msvcrt &&
1418 (file = open_global_header( make, strmake( "msvcrt/%s", pFile->name ), &pFile->filename )))
1419 return file;
1421 /* now search in include paths */
1422 for (i = 0; i < make->include_paths.count; i++)
1424 const char *dir = make->include_paths.str[i];
1425 const char *prefix = make->top_src_dir ? make->top_src_dir : make->top_obj_dir;
1427 if (prefix)
1429 len = strlen( prefix );
1430 if (!strncmp( dir, prefix, len ) && (!dir[len] || dir[len] == '/'))
1432 while (dir[len] == '/') len++;
1433 file = open_global_file( make, concat_paths( dir + len, pFile->name ), &pFile->filename );
1434 if (file) return file;
1436 if (make->top_src_dir) continue; /* ignore paths that don't point to the top source dir */
1438 if (*dir != '/')
1440 if ((file = open_include_path_file( make, dir, pFile->name, &pFile->filename )))
1441 return file;
1444 if (pFile->type == INCL_SYSTEM) return NULL; /* ignore system files we cannot find */
1446 /* try in src file directory */
1447 if ((file = open_file_same_dir( pFile->included_by, pFile->name, &pFile->filename ))) return file;
1449 fprintf( stderr, "%s:%d: error: ", pFile->included_by->file->name, pFile->included_line );
1450 perror( pFile->name );
1451 pFile = pFile->included_by;
1452 while (pFile && pFile->included_by)
1454 const char *parent = pFile->included_by->sourcename;
1455 if (!parent) parent = pFile->included_by->file->name;
1456 fprintf( stderr, "%s:%d: note: %s was first included here\n",
1457 parent, pFile->included_line, pFile->name );
1458 pFile = pFile->included_by;
1460 exit(1);
1464 /*******************************************************************
1465 * add_all_includes
1467 static void add_all_includes( struct makefile *make, struct incl_file *parent, struct file *file )
1469 unsigned int i;
1471 parent->files_count = 0;
1472 parent->files_size = file->deps_count;
1473 parent->files = xmalloc( parent->files_size * sizeof(*parent->files) );
1474 for (i = 0; i < file->deps_count; i++)
1476 switch (file->deps[i].type)
1478 case INCL_NORMAL:
1479 case INCL_IMPORT:
1480 add_include( make, parent, file->deps[i].name, file->deps[i].line, INCL_NORMAL );
1481 break;
1482 case INCL_IMPORTLIB:
1483 add_include( make, parent, file->deps[i].name, file->deps[i].line, INCL_IMPORTLIB );
1484 break;
1485 case INCL_SYSTEM:
1486 add_include( make, parent, file->deps[i].name, file->deps[i].line, INCL_SYSTEM );
1487 break;
1488 case INCL_CPP_QUOTE:
1489 case INCL_CPP_QUOTE_SYSTEM:
1490 break;
1496 /*******************************************************************
1497 * parse_file
1499 static void parse_file( struct makefile *make, struct incl_file *source, int src )
1501 struct file *file = src ? open_src_file( make, source ) : open_include_file( make, source );
1503 if (!file) return;
1505 source->file = file;
1506 source->files_count = 0;
1507 source->files_size = file->deps_count;
1508 source->files = xmalloc( source->files_size * sizeof(*source->files) );
1510 if (source->sourcename)
1512 if (strendswith( source->sourcename, ".idl" ))
1514 unsigned int i;
1516 if (strendswith( source->name, ".tlb" )) return; /* typelibs don't include anything */
1518 /* generated .h file always includes these */
1519 add_include( make, source, "rpc.h", 0, INCL_NORMAL );
1520 add_include( make, source, "rpcndr.h", 0, INCL_NORMAL );
1521 for (i = 0; i < file->deps_count; i++)
1523 switch (file->deps[i].type)
1525 case INCL_IMPORT:
1526 if (strendswith( file->deps[i].name, ".idl" ))
1527 add_include( make, source, replace_extension( file->deps[i].name, ".idl", ".h" ),
1528 file->deps[i].line, INCL_NORMAL );
1529 else
1530 add_include( make, source, file->deps[i].name, file->deps[i].line, INCL_NORMAL );
1531 break;
1532 case INCL_CPP_QUOTE:
1533 add_include( make, source, file->deps[i].name, file->deps[i].line, INCL_NORMAL );
1534 break;
1535 case INCL_CPP_QUOTE_SYSTEM:
1536 add_include( make, source, file->deps[i].name, file->deps[i].line, INCL_SYSTEM );
1537 break;
1538 case INCL_NORMAL:
1539 case INCL_SYSTEM:
1540 case INCL_IMPORTLIB:
1541 break;
1544 return;
1546 if (strendswith( source->sourcename, ".y" ))
1547 return; /* generated .tab.h doesn't include anything */
1550 add_all_includes( make, source, file );
1554 /*******************************************************************
1555 * add_src_file
1557 * Add a source file to the list.
1559 static struct incl_file *add_src_file( struct makefile *make, const char *name )
1561 struct incl_file *file;
1563 if ((file = find_src_file( make, name ))) return file; /* we already have it */
1564 file = xmalloc( sizeof(*file) );
1565 memset( file, 0, sizeof(*file) );
1566 file->name = xstrdup(name);
1567 list_add_tail( &make->sources, &file->entry );
1568 parse_file( make, file, 1 );
1569 return file;
1573 /*******************************************************************
1574 * open_input_makefile
1576 static FILE *open_input_makefile( const struct makefile *make )
1578 FILE *ret;
1580 if (make->base_dir)
1581 input_file_name = root_dir_path( base_dir_path( make, strmake( "%s.in", output_makefile_name )));
1582 else
1583 input_file_name = output_makefile_name; /* always use output name for main Makefile */
1585 input_line = 0;
1586 if (!(ret = fopen( input_file_name, "r" ))) fatal_perror( "open" );
1587 return ret;
1591 /*******************************************************************
1592 * get_make_variable
1594 static const char *get_make_variable( const struct makefile *make, const char *name )
1596 const char *ret;
1598 if ((ret = strarray_get_value( &cmdline_vars, name ))) return ret;
1599 if ((ret = strarray_get_value( &make->vars, name ))) return ret;
1600 if (top_makefile && (ret = strarray_get_value( &top_makefile->vars, name ))) return ret;
1601 return NULL;
1605 /*******************************************************************
1606 * get_expanded_make_variable
1608 static char *get_expanded_make_variable( const struct makefile *make, const char *name )
1610 const char *var;
1611 char *p, *end, *expand, *tmp;
1613 var = get_make_variable( make, name );
1614 if (!var) return NULL;
1616 p = expand = xstrdup( var );
1617 while ((p = strchr( p, '$' )))
1619 if (p[1] == '(')
1621 if (!(end = strchr( p + 2, ')' ))) fatal_error( "syntax error in '%s'\n", expand );
1622 *end++ = 0;
1623 if (strchr( p + 2, ':' )) fatal_error( "pattern replacement not supported for '%s'\n", p + 2 );
1624 var = get_make_variable( make, p + 2 );
1625 tmp = replace_substr( expand, p, end - p, var ? var : "" );
1626 /* switch to the new string */
1627 p = tmp + (p - expand);
1628 free( expand );
1629 expand = tmp;
1631 else if (p[1] == '{') /* don't expand ${} variables */
1633 if (!(end = strchr( p + 2, '}' ))) fatal_error( "syntax error in '%s'\n", expand );
1634 p = end + 1;
1636 else if (p[1] == '$')
1638 p += 2;
1640 else fatal_error( "syntax error in '%s'\n", expand );
1643 /* consider empty variables undefined */
1644 p = expand;
1645 while (*p && isspace(*p)) p++;
1646 if (*p) return expand;
1647 free( expand );
1648 return NULL;
1652 /*******************************************************************
1653 * get_expanded_make_var_array
1655 static struct strarray get_expanded_make_var_array( const struct makefile *make, const char *name )
1657 struct strarray ret = empty_strarray;
1658 char *value, *token;
1660 if ((value = get_expanded_make_variable( make, name )))
1661 for (token = strtok( value, " \t" ); token; token = strtok( NULL, " \t" ))
1662 strarray_add( &ret, token );
1663 return ret;
1667 /*******************************************************************
1668 * get_expanded_file_local_var
1670 static struct strarray get_expanded_file_local_var( const struct makefile *make, const char *file,
1671 const char *name )
1673 char *p, *var = strmake( "%s_%s", file, name );
1675 for (p = var; *p; p++) if (!isalnum( *p )) *p = '_';
1676 return get_expanded_make_var_array( make, var );
1680 /*******************************************************************
1681 * set_make_variable
1683 static int set_make_variable( struct strarray *array, const char *assignment )
1685 char *p, *name;
1687 p = name = xstrdup( assignment );
1688 while (isalnum(*p) || *p == '_') p++;
1689 if (name == p) return 0; /* not a variable */
1690 if (isspace(*p))
1692 *p++ = 0;
1693 while (isspace(*p)) p++;
1695 if (*p != '=') return 0; /* not an assignment */
1696 *p++ = 0;
1697 while (isspace(*p)) p++;
1699 strarray_set_value( array, name, p );
1700 return 1;
1704 /*******************************************************************
1705 * parse_makefile
1707 static struct makefile *parse_makefile( const char *path )
1709 char *buffer;
1710 FILE *file;
1711 struct makefile *make = xmalloc( sizeof(*make) );
1713 memset( make, 0, sizeof(*make) );
1714 if (path)
1716 make->top_obj_dir = get_relative_path( path, "" );
1717 make->base_dir = path;
1718 if (!strcmp( make->base_dir, "." )) make->base_dir = NULL;
1721 file = open_input_makefile( make );
1722 while ((buffer = get_line( file )))
1724 if (!strncmp( buffer, separator, strlen(separator) )) break;
1725 if (*buffer == '\t') continue; /* command */
1726 while (isspace( *buffer )) buffer++;
1727 if (*buffer == '#') continue; /* comment */
1728 set_make_variable( &make->vars, buffer );
1730 fclose( file );
1731 input_file_name = NULL;
1732 return make;
1736 /*******************************************************************
1737 * add_generated_sources
1739 static void add_generated_sources( struct makefile *make )
1741 struct incl_file *source, *next, *file;
1743 LIST_FOR_EACH_ENTRY_SAFE( source, next, &make->sources, struct incl_file, entry )
1745 if (source->file->flags & FLAG_IDL_CLIENT)
1747 file = add_generated_source( make, replace_extension( source->name, ".idl", "_c.c" ), NULL );
1748 add_dependency( file->file, replace_extension( source->name, ".idl", ".h" ), INCL_NORMAL );
1749 add_all_includes( make, file, file->file );
1751 if (source->file->flags & FLAG_IDL_SERVER)
1753 file = add_generated_source( make, replace_extension( source->name, ".idl", "_s.c" ), NULL );
1754 add_dependency( file->file, "wine/exception.h", INCL_NORMAL );
1755 add_dependency( file->file, replace_extension( source->name, ".idl", ".h" ), INCL_NORMAL );
1756 add_all_includes( make, file, file->file );
1758 if (source->file->flags & FLAG_IDL_IDENT)
1760 file = add_generated_source( make, replace_extension( source->name, ".idl", "_i.c" ), NULL );
1761 add_dependency( file->file, "rpc.h", INCL_NORMAL );
1762 add_dependency( file->file, "rpcndr.h", INCL_NORMAL );
1763 add_dependency( file->file, "guiddef.h", INCL_NORMAL );
1764 add_all_includes( make, file, file->file );
1766 if (source->file->flags & FLAG_IDL_PROXY)
1768 file = add_generated_source( make, "dlldata.o", "dlldata.c" );
1769 add_dependency( file->file, "objbase.h", INCL_NORMAL );
1770 add_dependency( file->file, "rpcproxy.h", INCL_NORMAL );
1771 add_all_includes( make, file, file->file );
1772 file = add_generated_source( make, replace_extension( source->name, ".idl", "_p.c" ), NULL );
1773 add_dependency( file->file, "objbase.h", INCL_NORMAL );
1774 add_dependency( file->file, "rpcproxy.h", INCL_NORMAL );
1775 add_dependency( file->file, "wine/exception.h", INCL_NORMAL );
1776 add_dependency( file->file, replace_extension( source->name, ".idl", ".h" ), INCL_NORMAL );
1777 add_all_includes( make, file, file->file );
1779 if (source->file->flags & FLAG_IDL_TYPELIB)
1781 add_generated_source( make, replace_extension( source->name, ".idl", ".tlb" ), NULL );
1783 if (source->file->flags & FLAG_IDL_REGTYPELIB)
1785 add_generated_source( make, replace_extension( source->name, ".idl", "_t.res" ), NULL );
1787 if (source->file->flags & FLAG_IDL_REGISTER)
1789 add_generated_source( make, replace_extension( source->name, ".idl", "_r.res" ), NULL );
1791 if (source->file->flags & FLAG_IDL_HEADER)
1793 add_generated_source( make, replace_extension( source->name, ".idl", ".h" ), NULL );
1795 if (!source->file->flags && strendswith( source->name, ".idl" ))
1797 add_generated_source( make, replace_extension( source->name, ".idl", ".h" ), NULL );
1799 if (strendswith( source->name, ".x" ))
1801 add_generated_source( make, replace_extension( source->name, ".x", ".h" ), NULL );
1803 if (strendswith( source->name, ".y" ))
1805 file = add_generated_source( make, replace_extension( source->name, ".y", ".tab.c" ), NULL );
1806 /* steal the includes list from the source file */
1807 file->files_count = source->files_count;
1808 file->files_size = source->files_size;
1809 file->files = source->files;
1810 source->files_count = source->files_size = 0;
1811 source->files = NULL;
1813 if (strendswith( source->name, ".l" ))
1815 file = add_generated_source( make, replace_extension( source->name, ".l", ".yy.c" ), NULL );
1816 /* steal the includes list from the source file */
1817 file->files_count = source->files_count;
1818 file->files_size = source->files_size;
1819 file->files = source->files;
1820 source->files_count = source->files_size = 0;
1821 source->files = NULL;
1823 if (source->file->flags & FLAG_C_IMPLIB)
1825 if (!make->staticimplib && make->importlib && *dll_ext)
1826 make->staticimplib = strmake( "lib%s.a", make->importlib );
1828 if (strendswith( source->name, ".po" ))
1830 if (!make->disabled)
1831 strarray_add_uniq( &linguas, replace_extension( source->name, ".po", "" ));
1834 if (make->testdll)
1836 file = add_generated_source( make, "testlist.o", "testlist.c" );
1837 add_dependency( file->file, "wine/test.h", INCL_NORMAL );
1838 add_all_includes( make, file, file->file );
1843 /*******************************************************************
1844 * create_dir
1846 static void create_dir( const char *dir )
1848 char *p, *path;
1850 p = path = xstrdup( dir );
1851 while ((p = strchr( p, '/' )))
1853 *p = 0;
1854 if (mkdir( path, 0755 ) == -1 && errno != EEXIST) fatal_perror( "mkdir %s", path );
1855 *p++ = '/';
1856 while (*p == '/') p++;
1858 if (mkdir( path, 0755 ) == -1 && errno != EEXIST) fatal_perror( "mkdir %s", path );
1859 free( path );
1863 /*******************************************************************
1864 * create_file_directories
1866 * Create the base directories of all the files.
1868 static void create_file_directories( const struct makefile *make, struct strarray files )
1870 struct strarray subdirs = empty_strarray;
1871 unsigned int i;
1872 char *dir;
1874 for (i = 0; i < files.count; i++)
1876 if (!strchr( files.str[i], '/' )) continue;
1877 dir = base_dir_path( make, files.str[i] );
1878 *strrchr( dir, '/' ) = 0;
1879 strarray_add_uniq( &subdirs, dir );
1882 for (i = 0; i < subdirs.count; i++) create_dir( subdirs.str[i] );
1886 /*******************************************************************
1887 * output_filenames_obj_dir
1889 static void output_filenames_obj_dir( const struct makefile *make, struct strarray array )
1891 unsigned int i;
1893 for (i = 0; i < array.count; i++) output_filename( obj_dir_path( make, array.str[i] ));
1897 /*******************************************************************
1898 * get_dependencies
1900 static void get_dependencies( struct strarray *deps, struct incl_file *file, struct incl_file *source )
1902 unsigned int i;
1904 if (!file->filename) return;
1906 if (file != source)
1908 if (file->owner == source) return; /* already processed */
1909 if (file->type == INCL_IMPORTLIB &&
1910 !(source->file->flags & (FLAG_IDL_TYPELIB | FLAG_IDL_REGTYPELIB)))
1911 return; /* library is imported only when building a typelib */
1912 file->owner = source;
1913 strarray_add( deps, file->filename );
1915 for (i = 0; i < file->files_count; i++) get_dependencies( deps, file->files[i], source );
1919 /*******************************************************************
1920 * get_local_dependencies
1922 * Get the local dependencies of a given target.
1924 static struct strarray get_local_dependencies( const struct makefile *make, const char *name,
1925 struct strarray targets )
1927 unsigned int i;
1928 struct strarray deps = get_expanded_file_local_var( make, name, "DEPS" );
1930 for (i = 0; i < deps.count; i++)
1932 if (strarray_exists( &targets, deps.str[i] ))
1933 deps.str[i] = obj_dir_path( make, deps.str[i] );
1934 else
1935 deps.str[i] = src_dir_path( make, deps.str[i] );
1937 return deps;
1941 /*******************************************************************
1942 * get_static_lib
1944 * Check if makefile builds the named static library and return the full lib path.
1946 static const char *get_static_lib( const struct makefile *make, const char *name )
1948 if (!make->staticlib) return NULL;
1949 if (strncmp( make->staticlib, "lib", 3 )) return NULL;
1950 if (strncmp( make->staticlib + 3, name, strlen(name) )) return NULL;
1951 if (strcmp( make->staticlib + 3 + strlen(name), ".a" )) return NULL;
1952 return base_dir_path( make, make->staticlib );
1956 /*******************************************************************
1957 * add_default_libraries
1959 static struct strarray add_default_libraries( const struct makefile *make, struct strarray *deps )
1961 struct strarray ret = empty_strarray;
1962 struct strarray all_libs = empty_strarray;
1963 unsigned int i, j;
1965 strarray_add( &all_libs, "-lwine_port" );
1966 strarray_addall( &all_libs, get_expanded_make_var_array( make, "EXTRALIBS" ));
1967 strarray_addall( &all_libs, libs );
1969 for (i = 0; i < all_libs.count; i++)
1971 const char *lib = NULL;
1973 if (!strncmp( all_libs.str[i], "-l", 2 ))
1975 const char *name = all_libs.str[i] + 2;
1977 for (j = 0; j < top_makefile->subdirs.count; j++)
1979 const struct makefile *submake = top_makefile->submakes[j];
1981 if ((lib = get_static_lib( submake, name ))) break;
1985 if (lib)
1987 lib = top_obj_dir_path( make, lib );
1988 strarray_add( deps, lib );
1989 strarray_add( &ret, lib );
1991 else strarray_add( &ret, all_libs.str[i] );
1993 return ret;
1997 /*******************************************************************
1998 * add_import_libs
2000 static struct strarray add_import_libs( const struct makefile *make, struct strarray *deps,
2001 struct strarray imports, int cross )
2003 struct strarray ret = empty_strarray;
2004 unsigned int i, j;
2006 for (i = 0; i < imports.count; i++)
2008 const char *name = imports.str[i];
2009 const char *lib = NULL;
2011 for (j = 0; j < top_makefile->subdirs.count; j++)
2013 const struct makefile *submake = top_makefile->submakes[j];
2015 if (submake->importlib && !strcmp( submake->importlib, name ))
2017 if (cross || !*dll_ext || submake->staticimplib)
2018 lib = base_dir_path( submake, strmake( "lib%s.a", name ));
2019 else
2020 strarray_add( deps, top_obj_dir_path( make,
2021 strmake( "%s/lib%s.def", submake->base_dir, name )));
2022 break;
2025 if ((lib = get_static_lib( submake, name ))) break;
2028 if (lib)
2030 if (cross) lib = replace_extension( lib, ".a", ".cross.a" );
2031 lib = top_obj_dir_path( make, lib );
2032 strarray_add( deps, lib );
2033 strarray_add( &ret, lib );
2035 else strarray_add( &ret, strmake( "-l%s", name ));
2037 return ret;
2041 /*******************************************************************
2042 * get_default_imports
2044 static struct strarray get_default_imports( const struct makefile *make )
2046 struct strarray ret = empty_strarray;
2048 if (strarray_exists( &make->extradllflags, "-nodefaultlibs" )) return ret;
2049 if (strarray_exists( &make->appmode, "-mno-cygwin" )) strarray_add( &ret, "msvcrt" );
2050 if (make->is_win16) strarray_add( &ret, "kernel" );
2051 strarray_add( &ret, "kernel32" );
2052 strarray_add( &ret, "ntdll" );
2053 strarray_add( &ret, "winecrt0" );
2054 return ret;
2058 /*******************************************************************
2059 * add_install_rule
2061 static void add_install_rule( const struct makefile *make, struct strarray *install_rules,
2062 const char *target, const char *file, const char *dest )
2064 if (strarray_exists( &make->install_lib, target ))
2066 strarray_add( &install_rules[INSTALL_LIB], file );
2067 strarray_add( &install_rules[INSTALL_LIB], dest );
2069 else if (strarray_exists( &make->install_dev, target ))
2071 strarray_add( &install_rules[INSTALL_DEV], file );
2072 strarray_add( &install_rules[INSTALL_DEV], dest );
2077 /*******************************************************************
2078 * get_include_install_path
2080 * Determine the installation path for a given include file.
2082 static const char *get_include_install_path( const char *name )
2084 if (!strncmp( name, "wine/", 5 )) return name + 5;
2085 if (!strncmp( name, "msvcrt/", 7 )) return name;
2086 return strmake( "windows/%s", name );
2090 /*******************************************************************
2091 * get_shared_library_name
2093 * Determine possible names for a shared library with a version number.
2095 static struct strarray get_shared_lib_names( const char *libname )
2097 struct strarray ret = empty_strarray;
2098 const char *ext, *p;
2099 char *name, *first, *second;
2100 size_t len = 0;
2102 strarray_add( &ret, libname );
2104 for (p = libname; (p = strchr( p, '.' )); p++)
2105 if ((len = strspn( p + 1, "0123456789." ))) break;
2107 if (!len) return ret;
2108 ext = p + 1 + len;
2109 if (*ext && ext[-1] == '.') ext--;
2111 /* keep only the first group of digits */
2112 name = xstrdup( libname );
2113 first = name + (p - libname);
2114 if ((second = strchr( first + 1, '.' )))
2116 strcpy( second, ext );
2117 strarray_add( &ret, xstrdup( name ));
2119 /* now remove all digits */
2120 strcpy( first, ext );
2121 strarray_add( &ret, name );
2122 return ret;
2126 /*******************************************************************
2127 * output_install_rules
2129 * Rules are stored as a (file,dest) pair of values.
2130 * The first char of dest indicates the type of install.
2132 static struct strarray output_install_rules( const struct makefile *make, struct strarray files,
2133 const char *target, struct strarray *phony_targets )
2135 unsigned int i;
2136 char *install_sh;
2137 struct strarray uninstall = empty_strarray;
2138 struct strarray targets = empty_strarray;
2140 if (!files.count) return uninstall;
2142 for (i = 0; i < files.count; i += 2)
2144 const char *file = files.str[i];
2145 switch (*files.str[i + 1])
2147 case 'd': /* data file */
2148 case 'p': /* program file */
2149 case 's': /* script */
2150 strarray_add_uniq( &targets, obj_dir_path( make, file ));
2151 break;
2152 case 't': /* script in tools dir */
2153 strarray_add_uniq( &targets, tools_dir_path( make, file ));
2154 break;
2158 output( "install %s::", target );
2159 output_filenames( targets );
2160 output( "\n" );
2162 install_sh = top_src_dir_path( make, "tools/install-sh" );
2163 for (i = 0; i < files.count; i += 2)
2165 const char *file = files.str[i];
2166 const char *dest = strmake( "$(DESTDIR)%s", files.str[i + 1] + 1 );
2168 switch (*files.str[i + 1])
2170 case 'd': /* data file */
2171 output( "\t%s -m 644 $(INSTALL_DATA_FLAGS) %s %s\n",
2172 install_sh, obj_dir_path( make, file ), dest );
2173 break;
2174 case 'D': /* data file in source dir */
2175 output( "\t%s -m 644 $(INSTALL_DATA_FLAGS) %s %s\n",
2176 install_sh, src_dir_path( make, file ), dest );
2177 break;
2178 case 'p': /* program file */
2179 output( "\tSTRIPPROG=\"$(STRIP)\" %s $(INSTALL_PROGRAM_FLAGS) %s %s\n",
2180 install_sh, obj_dir_path( make, file ), dest );
2181 break;
2182 case 's': /* script */
2183 output( "\t%s $(INSTALL_SCRIPT_FLAGS) %s %s\n",
2184 install_sh, obj_dir_path( make, file ), dest );
2185 break;
2186 case 'S': /* script in source dir */
2187 output( "\t%s $(INSTALL_SCRIPT_FLAGS) %s %s\n",
2188 install_sh, src_dir_path( make, file ), dest );
2189 break;
2190 case 't': /* script in tools dir */
2191 output( "\t%s $(INSTALL_SCRIPT_FLAGS) %s %s\n",
2192 install_sh, tools_dir_path( make, file ), dest );
2193 break;
2194 case 'y': /* symlink */
2195 output( "\trm -f %s && %s %s %s\n", dest, ln_s, file, dest );
2196 break;
2197 default:
2198 assert(0);
2200 strarray_add( &uninstall, dest );
2203 strarray_add_uniq( phony_targets, "install" );
2204 strarray_add_uniq( phony_targets, target );
2205 return uninstall;
2209 /*******************************************************************
2210 * output_importlib_symlinks
2212 static struct strarray output_importlib_symlinks( const struct makefile *parent,
2213 const struct makefile *make )
2215 struct strarray ret = empty_strarray;
2216 const char *dir, *lib;
2218 if (!make->module) return ret;
2219 if (!make->importlib) return ret;
2220 if (make->is_win16 && make->disabled) return ret;
2221 if (strncmp( make->base_dir, "dlls/", 5 )) return ret;
2222 if (!strcmp( make->module, make->importlib )) return ret;
2223 if (!strchr( make->importlib, '.' ) &&
2224 !strncmp( make->module, make->importlib, strlen( make->importlib )) &&
2225 !strcmp( make->module + strlen( make->importlib ), ".dll" ))
2226 return ret;
2228 dir = obj_dir_path( parent, "dlls" );
2229 lib = strmake( "lib%s.%s", make->importlib, *dll_ext ? "def" : "a" );
2230 output( "%s/%s: %s\n", dir, lib, base_dir_path( make, lib ));
2231 output( "\trm -f $@ && %s %s/%s $@\n", ln_s, make->base_dir + strlen("dlls/"), lib );
2232 strarray_add( &ret, strmake( "%s/%s", dir, lib ));
2234 if (crosstarget && !make->is_win16)
2236 lib = strmake( "lib%s.cross.a", make->importlib );
2237 output( "%s/%s: %s\n", dir, lib, base_dir_path( make, lib ));
2238 output( "\trm -f $@ && %s %s/%s $@\n", ln_s, make->base_dir + strlen("dlls/"), lib );
2239 strarray_add( &ret, strmake( "%s/%s", dir, lib ));
2241 return ret;
2245 /*******************************************************************
2246 * output_po_files
2248 static void output_po_files( const struct makefile *make )
2250 const char *po_dir = src_dir_path( make, "po" );
2251 struct strarray pot_files = empty_strarray;
2252 struct incl_file *source;
2253 unsigned int i;
2255 for (i = 0; i < make->subdirs.count; i++)
2257 struct makefile *submake = make->submakes[i];
2259 LIST_FOR_EACH_ENTRY( source, &submake->sources, struct incl_file, entry )
2261 if (strendswith( source->name, ".rc" ) && (source->file->flags & FLAG_RC_PO))
2263 char *pot_file = replace_extension( source->name, ".rc", ".pot" );
2264 char *pot_path = base_dir_path( submake, pot_file );
2265 output( "%s: tools/wrc include dummy\n", pot_path );
2266 output( "\t@cd %s && $(MAKE) %s\n", base_dir_path( submake, "" ), pot_file );
2267 strarray_add( &pot_files, pot_path );
2269 else if (strendswith( source->name, ".mc" ))
2271 char *pot_file = replace_extension( source->name, ".mc", ".pot" );
2272 char *pot_path = base_dir_path( submake, pot_file );
2273 output( "%s: tools/wmc include dummy\n", pot_path );
2274 output( "\t@cd %s && $(MAKE) %s\n", base_dir_path( submake, "" ), pot_file );
2275 strarray_add( &pot_files, pot_path );
2279 if (linguas.count)
2281 for (i = 0; i < linguas.count; i++)
2282 output_filename( strmake( "%s/%s.po", po_dir, linguas.str[i] ));
2283 output( ": %s/wine.pot\n", po_dir );
2284 output( "\tmsgmerge --previous -q $@ %s/wine.pot | msgattrib --no-obsolete -o $@.new && mv $@.new $@\n",
2285 po_dir );
2286 output( "po:" );
2287 for (i = 0; i < linguas.count; i++)
2288 output_filename( strmake( "%s/%s.po", po_dir, linguas.str[i] ));
2289 output( "\n" );
2291 output( "%s/wine.pot:", po_dir );
2292 output_filenames( pot_files );
2293 output( "\n" );
2294 output( "\tmsgcat -o $@" );
2295 output_filenames( pot_files );
2296 output( "\n" );
2300 /*******************************************************************
2301 * output_sources
2303 static struct strarray output_sources( const struct makefile *make )
2305 struct incl_file *source;
2306 unsigned int i, j;
2307 struct strarray object_files = empty_strarray;
2308 struct strarray crossobj_files = empty_strarray;
2309 struct strarray res_files = empty_strarray;
2310 struct strarray clean_files = empty_strarray;
2311 struct strarray uninstall_files = empty_strarray;
2312 struct strarray mo_files = empty_strarray;
2313 struct strarray ok_files = empty_strarray;
2314 struct strarray in_files = empty_strarray;
2315 struct strarray dlldata_files = empty_strarray;
2316 struct strarray c2man_files = empty_strarray;
2317 struct strarray implib_objs = empty_strarray;
2318 struct strarray includes = empty_strarray;
2319 struct strarray phony_targets = empty_strarray;
2320 struct strarray all_targets = empty_strarray;
2321 struct strarray install_rules[NB_INSTALL_RULES];
2322 char *ldrpath_local = get_expanded_make_variable( make, "LDRPATH_LOCAL" );
2323 char *ldrpath_install = get_expanded_make_variable( make, "LDRPATH_INSTALL" );
2325 for (i = 0; i < NB_INSTALL_RULES; i++) install_rules[i] = empty_strarray;
2327 for (i = 0; i < linguas.count; i++)
2328 strarray_add( &mo_files, strmake( "%s/%s.mo", top_obj_dir_path( make, "po" ), linguas.str[i] ));
2330 strarray_add( &phony_targets, "all" );
2331 strarray_add( &includes, strmake( "-I%s", obj_dir_path( make, "" )));
2332 if (make->src_dir) strarray_add( &includes, strmake( "-I%s", make->src_dir ));
2333 if (make->parent_dir) strarray_add( &includes, strmake( "-I%s", src_dir_path( make, make->parent_dir )));
2334 strarray_add( &includes, strmake( "-I%s", top_obj_dir_path( make, "include" )));
2335 if (make->top_src_dir)
2336 strarray_add( &includes, strmake( "-I%s", top_src_dir_path( make, "include" )));
2337 if (make->use_msvcrt)
2338 strarray_add( &includes, strmake( "-I%s", top_src_dir_path( make, "include/msvcrt" )));
2339 for (i = 0; i < make->include_paths.count; i++)
2340 strarray_add( &includes, strmake( "-I%s", obj_dir_path( make, make->include_paths.str[i] )));
2342 LIST_FOR_EACH_ENTRY( source, &make->sources, struct incl_file, entry )
2344 struct strarray dependencies = empty_strarray;
2345 struct strarray extradefs;
2346 char *obj = xstrdup( source->name );
2347 char *ext = get_extension( obj );
2349 if (!ext) fatal_error( "unsupported file type %s\n", source->name );
2350 *ext++ = 0;
2352 extradefs = get_expanded_file_local_var( make, obj, "EXTRADEFS" );
2353 get_dependencies( &dependencies, source, source );
2355 if (!strcmp( ext, "y" )) /* yacc file */
2357 /* add source file dependency for parallel makes */
2358 char *header = strmake( "%s.tab.h", obj );
2360 if (find_include_file( make, header ))
2362 output( "%s: %s\n", obj_dir_path( make, header ), source->filename );
2363 output( "\t$(BISON) -p %s_ -o %s.tab.c -d %s\n",
2364 obj, obj_dir_path( make, obj ), source->filename );
2365 output( "%s.tab.c: %s %s\n", obj_dir_path( make, obj ),
2366 source->filename, obj_dir_path( make, header ));
2367 strarray_add( &clean_files, header );
2369 else output( "%s.tab.c: %s\n", obj, source->filename );
2371 output( "\t$(BISON) -p %s_ -o $@ %s\n", obj, source->filename );
2373 else if (!strcmp( ext, "x" )) /* template file */
2375 output( "%s.h: %s%s %s\n", obj_dir_path( make, obj ),
2376 tools_dir_path( make, "make_xftmpl" ), tools_ext, source->filename );
2377 output( "\t%s%s -H -o $@ %s\n",
2378 tools_dir_path( make, "make_xftmpl" ), tools_ext, source->filename );
2379 if (source->file->flags & FLAG_INSTALL)
2381 strarray_add( &install_rules[INSTALL_DEV], source->name );
2382 strarray_add( &install_rules[INSTALL_DEV],
2383 strmake( "D$(includedir)/%s", get_include_install_path( source->name ) ));
2384 strarray_add( &install_rules[INSTALL_DEV], strmake( "%s.h", obj ));
2385 strarray_add( &install_rules[INSTALL_DEV],
2386 strmake( "d$(includedir)/%s.h", get_include_install_path( obj ) ));
2389 else if (!strcmp( ext, "l" )) /* lex file */
2391 output( "%s.yy.c: %s\n", obj_dir_path( make, obj ), source->filename );
2392 output( "\t$(FLEX) -o$@ %s\n", source->filename );
2394 else if (!strcmp( ext, "rc" )) /* resource file */
2396 strarray_add( &res_files, strmake( "%s.res", obj ));
2397 output( "%s.res: %s\n", obj_dir_path( make, obj ), source->filename );
2398 output( "\t%s -o $@", tools_path( make, "wrc" ) );
2399 if (make->is_win16) output_filename( "-m16" );
2400 else output_filenames( target_flags );
2401 output_filename( "--nostdinc" );
2402 output_filenames( includes );
2403 output_filenames( make->define_args );
2404 output_filenames( extradefs );
2405 if (mo_files.count && (source->file->flags & FLAG_RC_PO))
2407 output_filename( strmake( "--po-dir=%s", top_obj_dir_path( make, "po" )));
2408 output_filename( source->filename );
2409 output( "\n" );
2410 output( "%s.res:", obj_dir_path( make, obj ));
2411 output_filenames( mo_files );
2412 output( "\n" );
2414 else
2416 output_filename( source->filename );
2417 output( "\n" );
2419 if (source->file->flags & FLAG_RC_PO)
2421 strarray_add( &clean_files, strmake( "%s.pot", obj ));
2422 output( "%s.pot: %s\n", obj_dir_path( make, obj ), source->filename );
2423 output( "\t%s -O pot -o $@", tools_path( make, "wrc" ) );
2424 if (make->is_win16) output_filename( "-m16" );
2425 else output_filenames( target_flags );
2426 output_filename( "--nostdinc" );
2427 output_filenames( includes );
2428 output_filenames( make->define_args );
2429 output_filenames( extradefs );
2430 output_filename( source->filename );
2431 output( "\n" );
2432 output( "%s.pot ", obj_dir_path( make, obj ));
2434 output( "%s.res:", obj_dir_path( make, obj ));
2435 output_filename( tools_path( make, "wrc" ));
2436 output_filenames( dependencies );
2437 output( "\n" );
2439 else if (!strcmp( ext, "mc" )) /* message file */
2441 strarray_add( &res_files, strmake( "%s.res", obj ));
2442 strarray_add( &clean_files, strmake( "%s.pot", obj ));
2443 output( "%s.res: %s\n", obj_dir_path( make, obj ), source->filename );
2444 output( "\t%s -U -O res -o $@ %s", tools_path( make, "wmc" ), source->filename );
2445 if (mo_files.count)
2447 output_filename( strmake( "--po-dir=%s", top_obj_dir_path( make, "po" )));
2448 output( "\n" );
2449 output( "%s.res:", obj_dir_path( make, obj ));
2450 output_filenames( mo_files );
2452 output( "\n" );
2453 output( "%s.pot: %s\n", obj_dir_path( make, obj ), source->filename );
2454 output( "\t%s -O pot -o $@ %s", tools_path( make, "wmc" ), source->filename );
2455 output( "\n" );
2456 output( "%s.pot %s.res:", obj_dir_path( make, obj ), obj_dir_path( make, obj ));
2457 output_filename( tools_path( make, "wmc" ));
2458 output_filenames( dependencies );
2459 output( "\n" );
2461 else if (!strcmp( ext, "idl" )) /* IDL file */
2463 struct strarray targets = empty_strarray;
2464 char *dest;
2466 if (!source->file->flags) source->file->flags |= FLAG_IDL_HEADER | FLAG_INSTALL;
2467 if (find_include_file( make, strmake( "%s.h", obj ))) source->file->flags |= FLAG_IDL_HEADER;
2469 for (i = 0; i < sizeof(idl_outputs) / sizeof(idl_outputs[0]); i++)
2471 if (!(source->file->flags & idl_outputs[i].flag)) continue;
2472 dest = strmake( "%s%s", obj, idl_outputs[i].ext );
2473 if (!find_src_file( make, dest )) strarray_add( &clean_files, dest );
2474 strarray_add( &targets, dest );
2476 if (source->file->flags & FLAG_IDL_PROXY) strarray_add( &dlldata_files, source->name );
2477 if (source->file->flags & FLAG_INSTALL)
2479 strarray_add( &install_rules[INSTALL_DEV], xstrdup( source->name ));
2480 strarray_add( &install_rules[INSTALL_DEV],
2481 strmake( "D$(includedir)/%s.idl", get_include_install_path( obj ) ));
2482 if (source->file->flags & FLAG_IDL_HEADER)
2484 strarray_add( &install_rules[INSTALL_DEV], strmake( "%s.h", obj ));
2485 strarray_add( &install_rules[INSTALL_DEV],
2486 strmake( "d$(includedir)/%s.h", get_include_install_path( obj ) ));
2489 if (!targets.count) continue;
2490 output_filenames_obj_dir( make, targets );
2491 output( ": %s\n", tools_path( make, "widl" ));
2492 output( "\t%s -o $@", tools_path( make, "widl" ) );
2493 output_filenames( target_flags );
2494 output_filenames( includes );
2495 output_filenames( make->define_args );
2496 output_filenames( extradefs );
2497 output_filenames( get_expanded_make_var_array( make, "EXTRAIDLFLAGS" ));
2498 output_filename( source->filename );
2499 output( "\n" );
2500 output_filenames_obj_dir( make, targets );
2501 output( ": %s", source->filename );
2502 output_filenames( dependencies );
2503 output( "\n" );
2505 else if (!strcmp( ext, "in" )) /* .in file or man page */
2507 if (strendswith( obj, ".man" ) && source->file->args)
2509 struct strarray symlinks;
2510 char *dir, *dest = replace_extension( obj, ".man", "" );
2511 char *lang = strchr( dest, '.' );
2512 char *section = source->file->args;
2513 if (lang)
2515 *lang++ = 0;
2516 dir = strmake( "$(mandir)/%s/man%s", lang, section );
2518 else dir = strmake( "$(mandir)/man%s", section );
2519 add_install_rule( make, install_rules, dest, xstrdup(obj),
2520 strmake( "d%s/%s.%s", dir, dest, section ));
2521 symlinks = get_expanded_file_local_var( make, dest, "SYMLINKS" );
2522 for (i = 0; i < symlinks.count; i++)
2523 add_install_rule( make, install_rules, symlinks.str[i],
2524 strmake( "%s.%s", dest, section ),
2525 strmake( "y%s/%s.%s", dir, symlinks.str[i], section ));
2526 free( dest );
2527 free( dir );
2529 strarray_add( &in_files, xstrdup(obj) );
2530 strarray_add( &all_targets, xstrdup(obj) );
2531 output( "%s: %s\n", obj_dir_path( make, obj ), source->filename );
2532 output( "\t$(SED_CMD) %s >$@ || (rm -f $@ && false)\n", source->filename );
2533 output( "%s:", obj_dir_path( make, obj ));
2534 output_filenames( dependencies );
2535 output( "\n" );
2536 add_install_rule( make, install_rules, obj, xstrdup( obj ),
2537 strmake( "d$(datadir)/wine/%s", obj ));
2539 else if (!strcmp( ext, "sfd" )) /* font file */
2541 char *ttf_file = src_dir_path( make, strmake( "%s.ttf", obj ));
2542 if (fontforge && !make->src_dir)
2544 output( "%s: %s\n", ttf_file, source->filename );
2545 output( "\t%s -script %s %s $@\n",
2546 fontforge, top_src_dir_path( make, "fonts/genttf.ff" ), source->filename );
2547 if (!(source->file->flags & FLAG_SFD_FONTS)) output( "all: %s\n", ttf_file );
2549 if (source->file->flags & FLAG_INSTALL)
2551 strarray_add( &install_rules[INSTALL_LIB], strmake( "%s.ttf", obj ));
2552 strarray_add( &install_rules[INSTALL_LIB], strmake( "D$(fontdir)/%s.ttf", obj ));
2554 if (source->file->flags & FLAG_SFD_FONTS)
2556 struct strarray *array = source->file->args;
2558 for (i = 0; i < array->count; i++)
2560 char *font = strtok( xstrdup(array->str[i]), " \t" );
2561 char *args = strtok( NULL, "" );
2563 strarray_add( &all_targets, xstrdup( font ));
2564 output( "%s: %s %s\n", obj_dir_path( make, font ),
2565 tools_path( make, "sfnt2fon" ), ttf_file );
2566 output( "\t%s -o $@ %s %s\n", tools_path( make, "sfnt2fon" ), ttf_file, args );
2567 strarray_add( &install_rules[INSTALL_LIB], xstrdup(font) );
2568 strarray_add( &install_rules[INSTALL_LIB], strmake( "d$(fontdir)/%s", font ));
2572 else if (!strcmp( ext, "svg" )) /* svg file */
2574 if (convert && rsvg && icotool && !make->src_dir)
2576 output( "%s.ico %s.bmp: %s\n",
2577 src_dir_path( make, obj ), src_dir_path( make, obj ), source->filename );
2578 output( "\tCONVERT=\"%s\" ICOTOOL=\"%s\" RSVG=\"%s\" %s %s $@\n", convert, icotool, rsvg,
2579 top_src_dir_path( make, "tools/buildimage" ), source->filename );
2582 else if (!strcmp( ext, "po" )) /* po file */
2584 output( "%s.mo: %s\n", obj_dir_path( make, obj ), source->filename );
2585 output( "\t%s -o $@ %s\n", msgfmt, source->filename );
2586 strarray_add( &all_targets, strmake( "%s.mo", obj ));
2588 else if (!strcmp( ext, "res" ))
2590 strarray_add( &res_files, source->name );
2592 else if (!strcmp( ext, "tlb" ))
2594 strarray_add( &all_targets, source->name );
2596 else if (!strcmp( ext, "h" ) || !strcmp( ext, "rh" ) || !strcmp( ext, "inl" )) /* header file */
2598 if (source->file->flags & FLAG_GENERATED)
2600 strarray_add( &all_targets, source->name );
2602 else
2604 strarray_add( &install_rules[INSTALL_DEV], source->name );
2605 strarray_add( &install_rules[INSTALL_DEV],
2606 strmake( "D$(includedir)/%s", get_include_install_path( source->name ) ));
2609 else
2611 int need_cross = make->testdll ||
2612 (source->file->flags & FLAG_C_IMPLIB) ||
2613 (make->module && make->staticlib);
2615 if ((source->file->flags & FLAG_GENERATED) &&
2616 (!make->testdll || !strendswith( source->filename, "testlist.c" )))
2617 strarray_add( &clean_files, source->filename );
2618 if (source->file->flags & FLAG_C_IMPLIB) strarray_add( &implib_objs, strmake( "%s.o", obj ));
2619 strarray_add( &object_files, strmake( "%s.o", obj ));
2620 output( "%s.o: %s\n", obj_dir_path( make, obj ), source->filename );
2621 output( "\t$(CC) -c -o $@ %s", source->filename );
2622 output_filenames( includes );
2623 output_filenames( make->define_args );
2624 output_filenames( extradefs );
2625 if (make->module || make->staticlib || make->sharedlib || make->testdll)
2627 output_filenames( dll_flags );
2628 if (make->use_msvcrt) output_filenames( msvcrt_flags );
2630 output_filenames( extra_cflags );
2631 output_filenames( cpp_flags );
2632 output_filename( "$(CFLAGS)" );
2633 output( "\n" );
2634 if (crosstarget && need_cross)
2636 strarray_add( &crossobj_files, strmake( "%s.cross.o", obj ));
2637 output( "%s.cross.o: %s\n", obj_dir_path( make, obj ), source->filename );
2638 output( "\t$(CROSSCC) -c -o $@ %s", source->filename );
2639 output_filenames( includes );
2640 output_filenames( make->define_args );
2641 output_filenames( extradefs );
2642 if (make->use_msvcrt) output_filenames( msvcrt_flags );
2643 output_filename( "-DWINE_CROSSTEST" );
2644 output_filenames( cpp_flags );
2645 output_filename( "$(CFLAGS)" );
2646 output( "\n" );
2648 if (make->testdll && !strcmp( ext, "c" ) && !(source->file->flags & FLAG_GENERATED))
2650 strarray_add( &ok_files, strmake( "%s.ok", obj ));
2651 output( "%s.ok:\n", obj_dir_path( make, obj ));
2652 output( "\t%s $(RUNTESTFLAGS) -T %s -M %s -p %s%s %s && touch $@\n",
2653 top_src_dir_path( make, "tools/runtest" ), top_obj_dir_path( make, "" ),
2654 make->testdll, replace_extension( make->testdll, ".dll", "_test.exe" ),
2655 dll_ext, obj );
2657 if (!strcmp( ext, "c" ) && !(source->file->flags & FLAG_GENERATED))
2658 strarray_add( &c2man_files, source->filename );
2659 output( "%s.o", obj_dir_path( make, obj ));
2660 if (crosstarget && need_cross) output( " %s.cross.o", obj_dir_path( make, obj ));
2661 output( ":" );
2662 output_filenames( dependencies );
2663 output( "\n" );
2665 free( obj );
2668 /* rules for files that depend on multiple sources */
2670 if (dlldata_files.count)
2672 output( "%s: %s %s\n", obj_dir_path( make, "dlldata.c" ),
2673 tools_path( make, "widl" ), src_dir_path( make, "Makefile.in" ));
2674 output( "\t%s --dlldata-only -o $@", tools_path( make, "widl" ));
2675 output_filenames( dlldata_files );
2676 output( "\n" );
2679 if (make->module && !make->staticlib)
2681 struct strarray all_libs = empty_strarray;
2682 struct strarray dep_libs = empty_strarray;
2683 char *module_path = obj_dir_path( make, make->module );
2684 char *spec_file = NULL;
2686 if (!make->appmode.count)
2687 spec_file = src_dir_path( make, replace_extension( make->module, ".dll", ".spec" ));
2688 strarray_addall( &all_libs, add_import_libs( make, &dep_libs, make->delayimports, 0 ));
2689 strarray_addall( &all_libs, add_import_libs( make, &dep_libs, make->imports, 0 ));
2690 add_import_libs( make, &dep_libs, get_default_imports( make ), 0 ); /* dependencies only */
2691 strarray_addall( &all_libs, add_default_libraries( make, &dep_libs ));
2693 if (*dll_ext)
2695 for (i = 0; i < make->delayimports.count; i++)
2696 strarray_add( &all_libs, strmake( "-Wb,-d%s", make->delayimports.str[i] ));
2697 strarray_add( &all_targets, strmake( "%s%s", make->module, dll_ext ));
2698 strarray_add( &all_targets, strmake( "%s.fake", make->module ));
2699 add_install_rule( make, install_rules, make->module, strmake( "%s%s", make->module, dll_ext ),
2700 strmake( "p$(dlldir)/%s%s", make->module, dll_ext ));
2701 add_install_rule( make, install_rules, make->module, strmake( "%s.fake", make->module ),
2702 strmake( "d$(fakedlldir)/%s", make->module ));
2703 output( "%s%s %s.fake:", module_path, dll_ext, module_path );
2705 else
2707 strarray_add( &all_libs, "-lwine" );
2708 strarray_add( &all_targets, make->module );
2709 add_install_rule( make, install_rules, make->module, make->module,
2710 strmake( "p$(%s)/%s", spec_file ? "dlldir" : "bindir", make->module ));
2711 output( "%s:", module_path );
2713 if (spec_file) output_filename( spec_file );
2714 output_filenames_obj_dir( make, object_files );
2715 output_filenames_obj_dir( make, res_files );
2716 output_filenames( dep_libs );
2717 output_filename( tools_path( make, "winebuild" ));
2718 output_filename( tools_path( make, "winegcc" ));
2719 output( "\n" );
2720 output( "\t%s -o $@", tools_path( make, "winegcc" ));
2721 output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
2722 if (tools_dir) output_filename( strmake( "--sysroot=%s", top_obj_dir_path( make, "" )));
2723 output_filenames( target_flags );
2724 output_filenames( unwind_flags );
2725 if (spec_file)
2727 output( " -shared %s", spec_file );
2728 output_filenames( make->extradllflags );
2730 else output_filenames( make->appmode );
2731 output_filenames_obj_dir( make, object_files );
2732 output_filenames_obj_dir( make, res_files );
2733 output_filenames( all_libs );
2734 output_filename( "$(LDFLAGS)" );
2735 output( "\n" );
2737 if (spec_file && make->importlib)
2739 char *importlib_path = obj_dir_path( make, strmake( "lib%s", make->importlib ));
2740 if (*dll_ext && !implib_objs.count)
2742 strarray_add( &clean_files, strmake( "lib%s.def", make->importlib ));
2743 output( "%s.def: %s %s\n", importlib_path, tools_path( make, "winebuild" ), spec_file );
2744 output( "\t%s -w --def -o $@ --export %s", tools_path( make, "winebuild" ), spec_file );
2745 output_filenames( target_flags );
2746 if (make->is_win16) output_filename( "-m16" );
2747 output( "\n" );
2748 add_install_rule( make, install_rules, make->importlib,
2749 strmake( "lib%s.def", make->importlib ),
2750 strmake( "d$(dlldir)/lib%s.def", make->importlib ));
2752 else
2754 strarray_add( &clean_files, strmake( "lib%s.a", make->importlib ));
2755 output( "%s.a: %s %s", importlib_path, tools_path( make, "winebuild" ), spec_file );
2756 output_filenames_obj_dir( make, implib_objs );
2757 output( "\n" );
2758 output( "\t%s -w --implib -o $@ --export %s", tools_path( make, "winebuild" ), spec_file );
2759 output_filenames( target_flags );
2760 output_filenames_obj_dir( make, implib_objs );
2761 output( "\n" );
2762 add_install_rule( make, install_rules, make->importlib,
2763 strmake( "lib%s.a", make->importlib ),
2764 strmake( "d$(dlldir)/lib%s.a", make->importlib ));
2766 if (crosstarget && !make->is_win16)
2768 struct strarray cross_files = strarray_replace_extension( &implib_objs, ".o", ".cross.o" );
2769 strarray_add( &clean_files, strmake( "lib%s.cross.a", make->importlib ));
2770 output( "%s.cross.a: %s %s", importlib_path, tools_path( make, "winebuild" ), spec_file );
2771 output_filenames_obj_dir( make, cross_files );
2772 output( "\n" );
2773 output( "\t%s -b %s -w --implib -o $@ --export %s",
2774 tools_path( make, "winebuild" ), crosstarget, spec_file );
2775 output_filenames_obj_dir( make, cross_files );
2776 output( "\n" );
2780 if (spec_file)
2782 if (c2man_files.count)
2784 output( "manpages::\n" );
2785 output( "\t%s -w %s", top_src_dir_path( make, "tools/c2man.pl" ), spec_file );
2786 output_filename( strmake( "-R%s", top_src_dir_path( make, "" )));
2787 output_filename( strmake( "-I%s", top_src_dir_path( make, "include" )));
2788 output_filename( strmake( "-o %s/man%s",
2789 top_obj_dir_path( make, "documentation" ), man_ext ));
2790 output_filenames( c2man_files );
2791 output( "\n" );
2792 output( "htmlpages::\n" );
2793 output( "\t%s -Th -w %s", top_src_dir_path( make, "tools/c2man.pl" ), spec_file );
2794 output_filename( strmake( "-R%s", top_src_dir_path( make, "" )));
2795 output_filename( strmake( "-I%s", top_src_dir_path( make, "include" )));
2796 output_filename( strmake( "-o %s",
2797 top_obj_dir_path( make, "documentation/html" )));
2798 output_filenames( c2man_files );
2799 output( "\n" );
2800 output( "sgmlpages::\n" );
2801 output( "\t%s -Ts -w %s", top_src_dir_path( make, "tools/c2man.pl" ), spec_file );
2802 output_filename( strmake( "-R%s", top_src_dir_path( make, "" )));
2803 output_filename( strmake( "-I%s", top_src_dir_path( make, "include" )));
2804 output_filename( strmake( "-o %s",
2805 top_obj_dir_path( make, "documentation/api-guide" )));
2806 output_filenames( c2man_files );
2807 output( "\n" );
2808 output( "xmlpages::\n" );
2809 output( "\t%s -Tx -w %s", top_src_dir_path( make, "tools/c2man.pl" ), spec_file );
2810 output_filename( strmake( "-R%s", top_src_dir_path( make, "" )));
2811 output_filename( strmake( "-I%s", top_src_dir_path( make, "include" )));
2812 output_filename( strmake( "-o %s",
2813 top_obj_dir_path( make, "documentation/api-guide-xml" )));
2814 output_filenames( c2man_files );
2815 output( "\n" );
2816 strarray_add( &phony_targets, "manpages" );
2817 strarray_add( &phony_targets, "htmlpages" );
2818 strarray_add( &phony_targets, "sgmlpages" );
2819 strarray_add( &phony_targets, "xmlpages" );
2821 else output( "manpages htmlpages sgmlpages xmlpages::\n" );
2823 else if (*dll_ext)
2825 char *binary = replace_extension( make->module, ".exe", "" );
2826 add_install_rule( make, install_rules, binary, "wineapploader",
2827 strmake( "t$(bindir)/%s", binary ));
2831 if (make->staticlib)
2833 strarray_add( &all_targets, make->staticlib );
2834 output( "%s:", obj_dir_path( make, make->staticlib ));
2835 output_filenames_obj_dir( make, object_files );
2836 output( "\n\trm -f $@\n" );
2837 output( "\t$(AR) $(ARFLAGS) $@" );
2838 output_filenames_obj_dir( make, object_files );
2839 output( "\n\t$(RANLIB) $@\n" );
2840 add_install_rule( make, install_rules, make->staticlib, make->staticlib,
2841 strmake( "d$(dlldir)/%s", make->staticlib ));
2842 if (crosstarget && make->module)
2844 char *name = replace_extension( make->staticlib, ".a", ".cross.a" );
2846 strarray_add( &all_targets, name );
2847 output( "%s:", obj_dir_path( make, name ));
2848 output_filenames_obj_dir( make, crossobj_files );
2849 output( "\n\trm -f $@\n" );
2850 output( "\t%s-ar $(ARFLAGS) $@", crosstarget );
2851 output_filenames_obj_dir( make, crossobj_files );
2852 output( "\n\t%s-ranlib $@\n", crosstarget );
2856 if (make->sharedlib)
2858 char *basename, *p;
2859 struct strarray names = get_shared_lib_names( make->sharedlib );
2860 struct strarray all_libs = empty_strarray;
2861 struct strarray dep_libs = empty_strarray;
2863 basename = xstrdup( make->sharedlib );
2864 if ((p = strchr( basename, '.' ))) *p = 0;
2866 strarray_addall( &dep_libs, get_local_dependencies( make, basename, in_files ));
2867 strarray_addall( &all_libs, get_expanded_file_local_var( make, basename, "LDFLAGS" ));
2868 strarray_addall( &all_libs, add_default_libraries( make, &dep_libs ));
2870 output( "%s:", obj_dir_path( make, make->sharedlib ));
2871 output_filenames_obj_dir( make, object_files );
2872 output_filenames( dep_libs );
2873 output( "\n" );
2874 output( "\t$(CC) -o $@" );
2875 output_filenames_obj_dir( make, object_files );
2876 output_filenames( all_libs );
2877 output_filename( "$(LDFLAGS)" );
2878 output( "\n" );
2879 add_install_rule( make, install_rules, make->sharedlib, make->sharedlib,
2880 strmake( "p$(libdir)/%s", make->sharedlib ));
2881 for (i = 1; i < names.count; i++)
2883 output( "%s: %s\n", obj_dir_path( make, names.str[i] ), obj_dir_path( make, names.str[i-1] ));
2884 output( "\trm -f $@ && %s %s $@\n", ln_s, names.str[i-1] );
2885 add_install_rule( make, install_rules, names.str[i], names.str[i-1],
2886 strmake( "y$(libdir)/%s", names.str[i] ));
2888 strarray_addall( &all_targets, names );
2891 if (make->importlib && !make->module) /* stand-alone import lib (for libwine) */
2893 char *def_file = replace_extension( make->importlib, ".a", ".def" );
2895 if (!strncmp( def_file, "lib", 3 )) def_file += 3;
2896 output( "%s: %s\n", obj_dir_path( make, make->importlib ), src_dir_path( make, def_file ));
2897 output( "\t%s -l $@ -d %s\n", dlltool, src_dir_path( make, def_file ));
2898 add_install_rule( make, install_rules, make->importlib, make->importlib,
2899 strmake( "d$(libdir)/%s", make->importlib ));
2900 strarray_add( &all_targets, make->importlib );
2903 if (make->testdll)
2905 char *testmodule = replace_extension( make->testdll, ".dll", "_test.exe" );
2906 char *stripped = replace_extension( make->testdll, ".dll", "_test-stripped.exe" );
2907 char *testres = replace_extension( make->testdll, ".dll", "_test.res" );
2908 struct strarray dep_libs = empty_strarray;
2909 struct strarray all_libs = add_import_libs( make, &dep_libs, make->imports, 0 );
2911 add_import_libs( make, &dep_libs, get_default_imports( make ), 0 ); /* dependencies only */
2912 strarray_addall( &all_libs, libs );
2913 strarray_add( &all_targets, strmake( "%s%s", testmodule, dll_ext ));
2914 strarray_add( &clean_files, strmake( "%s%s", stripped, dll_ext ));
2915 output( "%s%s:\n", obj_dir_path( make, testmodule ), dll_ext );
2916 output( "\t%s -o $@", tools_path( make, "winegcc" ));
2917 output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
2918 if (tools_dir) output_filename( strmake( "--sysroot=%s", top_obj_dir_path( make, "" )));
2919 output_filenames( target_flags );
2920 output_filenames( unwind_flags );
2921 output_filenames( make->appmode );
2922 output_filenames_obj_dir( make, object_files );
2923 output_filenames_obj_dir( make, res_files );
2924 output_filenames( all_libs );
2925 output_filename( "$(LDFLAGS)" );
2926 output( "\n" );
2927 output( "%s%s:\n", obj_dir_path( make, stripped ), dll_ext );
2928 output( "\t%s -o $@", tools_path( make, "winegcc" ));
2929 output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
2930 if (tools_dir) output_filename( strmake( "--sysroot=%s", top_obj_dir_path( make, "" )));
2931 output_filenames( target_flags );
2932 output_filenames( unwind_flags );
2933 output_filename( strmake( "-Wb,-F,%s", testmodule ));
2934 output_filenames( make->appmode );
2935 output_filenames_obj_dir( make, object_files );
2936 output_filenames_obj_dir( make, res_files );
2937 output_filenames( all_libs );
2938 output_filename( "$(LDFLAGS)" );
2939 output( "\n" );
2940 output( "%s%s %s%s:", obj_dir_path( make, testmodule ), dll_ext,
2941 obj_dir_path( make, stripped ), dll_ext );
2942 output_filenames_obj_dir( make, object_files );
2943 output_filenames_obj_dir( make, res_files );
2944 output_filenames( dep_libs );
2945 output_filename( tools_path( make, "winebuild" ));
2946 output_filename( tools_path( make, "winegcc" ));
2947 output( "\n" );
2949 if (!make->disabled)
2950 output( "all: %s/%s\n", top_obj_dir_path( make, "programs/winetest" ), testres );
2951 output( "%s/%s: %s%s\n", top_obj_dir_path( make, "programs/winetest" ), testres,
2952 obj_dir_path( make, stripped ), dll_ext );
2953 output( "\techo \"%s TESTRES \\\"%s%s\\\"\" | %s -o $@\n",
2954 testmodule, obj_dir_path( make, stripped ), dll_ext, tools_path( make, "wrc" ));
2956 if (crosstarget)
2958 char *crosstest = replace_extension( make->testdll, ".dll", "_crosstest.exe" );
2960 dep_libs = empty_strarray;
2961 all_libs = add_import_libs( make, &dep_libs, make->imports, 1 );
2962 add_import_libs( make, &dep_libs, get_default_imports( make ), 1 ); /* dependencies only */
2963 strarray_addall( &all_libs, libs );
2964 strarray_add( &clean_files, crosstest );
2965 output( "%s:", obj_dir_path( make, crosstest ));
2966 output_filenames_obj_dir( make, crossobj_files );
2967 output_filenames_obj_dir( make, res_files );
2968 output_filenames( dep_libs );
2969 output_filename( tools_path( make, "winebuild" ));
2970 output_filename( tools_path( make, "winegcc" ));
2971 output( "\n" );
2972 output( "\t%s -o $@ -b %s", tools_path( make, "winegcc" ), crosstarget );
2973 output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
2974 if (tools_dir) output_filename( strmake( "--sysroot=%s", top_obj_dir_path( make, "" )));
2975 output_filename( "--lib-suffix=.cross.a" );
2976 output_filenames_obj_dir( make, crossobj_files );
2977 output_filenames_obj_dir( make, res_files );
2978 output_filenames( all_libs );
2979 output_filename( "$(LDFLAGS)" );
2980 output( "\n" );
2981 if (!make->disabled)
2983 output( "%s: %s\n", obj_dir_path( make, "crosstest" ), obj_dir_path( make, crosstest ));
2984 strarray_add( &phony_targets, obj_dir_path( make, "crosstest" ));
2985 if (make->obj_dir) output( "crosstest: %s\n", obj_dir_path( make, "crosstest" ));
2989 output_filenames_obj_dir( make, ok_files );
2990 output( ": %s%s ../%s%s\n", testmodule, dll_ext, make->testdll, dll_ext );
2991 if (!make->disabled)
2993 output( "check test:" );
2994 output_filenames_obj_dir( make, ok_files );
2995 output( "\n" );
2996 strarray_add( &phony_targets, "check" );
2997 strarray_add( &phony_targets, "test" );
2999 output( "testclean::\n" );
3000 output( "\trm -f" );
3001 output_filenames_obj_dir( make, ok_files );
3002 output( "\n" );
3003 strarray_addall( &clean_files, ok_files );
3004 strarray_add( &phony_targets, "testclean" );
3007 for (i = 0; i < make->programs.count; i++)
3009 char *program_installed = NULL;
3010 char *program = strmake( "%s%s", make->programs.str[i], exe_ext );
3011 struct strarray deps = get_local_dependencies( make, make->programs.str[i], in_files );
3012 struct strarray all_libs = get_expanded_file_local_var( make, make->programs.str[i], "LDFLAGS" );
3013 struct strarray objs = get_expanded_file_local_var( make, make->programs.str[i], "OBJS" );
3014 struct strarray symlinks = get_expanded_file_local_var( make, make->programs.str[i], "SYMLINKS" );
3016 if (!objs.count) objs = object_files;
3017 strarray_addall( &all_libs, add_default_libraries( make, &deps ));
3019 output( "%s:", obj_dir_path( make, program ) );
3020 output_filenames_obj_dir( make, objs );
3021 output_filenames( deps );
3022 output( "\n" );
3023 output( "\t$(CC) -o $@" );
3024 output_filenames_obj_dir( make, objs );
3026 if (strarray_exists( &all_libs, "-lwine" ))
3028 strarray_add( &all_libs, strmake( "-L%s", top_obj_dir_path( make, "libs/wine" )));
3029 if (ldrpath_local && ldrpath_install)
3031 program_installed = strmake( "%s-installed%s", make->programs.str[i], exe_ext );
3032 output_filename( ldrpath_local );
3033 output_filenames( all_libs );
3034 output_filename( "$(LDFLAGS)" );
3035 output( "\n" );
3036 output( "%s:", obj_dir_path( make, program_installed ) );
3037 output_filenames_obj_dir( make, objs );
3038 output_filenames( deps );
3039 output( "\n" );
3040 output( "\t$(CC) -o $@" );
3041 output_filenames_obj_dir( make, objs );
3042 output_filename( ldrpath_install );
3043 strarray_add( &all_targets, program_installed );
3047 output_filenames( all_libs );
3048 output_filename( "$(LDFLAGS)" );
3049 output( "\n" );
3050 strarray_add( &all_targets, program );
3052 if (symlinks.count)
3054 output_filenames_obj_dir( make, symlinks );
3055 output( ": %s\n", obj_dir_path( make, program ));
3056 output( "\trm -f $@ && %s %s $@\n", ln_s, obj_dir_path( make, program ));
3057 strarray_addall( &all_targets, symlinks );
3060 add_install_rule( make, install_rules, program, program_installed ? program_installed : program,
3061 strmake( "p$(bindir)/%s", program ));
3062 for (j = 0; j < symlinks.count; j++)
3063 add_install_rule( make, install_rules, symlinks.str[j], program,
3064 strmake( "y$(bindir)/%s%s", symlinks.str[j], exe_ext ));
3067 for (i = 0; i < make->scripts.count; i++)
3068 add_install_rule( make, install_rules, make->scripts.str[i], make->scripts.str[i],
3069 strmake( "S$(bindir)/%s", make->scripts.str[i] ));
3071 if (!make->disabled)
3073 if (all_targets.count)
3075 output( "all:" );
3076 output_filenames_obj_dir( make, all_targets );
3077 output( "\n" );
3079 strarray_addall( &uninstall_files, output_install_rules( make, install_rules[INSTALL_LIB],
3080 "install-lib", &phony_targets ));
3081 strarray_addall( &uninstall_files, output_install_rules( make, install_rules[INSTALL_DEV],
3082 "install-dev", &phony_targets ));
3083 if (uninstall_files.count)
3085 output( "uninstall::\n" );
3086 output( "\trm -f" );
3087 output_filenames( uninstall_files );
3088 output( "\n" );
3089 strarray_add_uniq( &phony_targets, "uninstall" );
3093 strarray_addall( &clean_files, object_files );
3094 strarray_addall( &clean_files, crossobj_files );
3095 strarray_addall( &clean_files, res_files );
3096 strarray_addall( &clean_files, all_targets );
3097 strarray_addall( &clean_files, get_expanded_make_var_array( make, "EXTRA_TARGETS" ));
3099 if (make->subdirs.count)
3101 struct strarray build_deps = empty_strarray;
3102 struct strarray makefile_deps = empty_strarray;
3103 struct strarray distclean_files = get_expanded_make_var_array( make, "CONFIGURE_TARGETS" );
3105 strarray_add( &distclean_files, obj_dir_path( make, output_makefile_name ));
3106 if (!make->src_dir) strarray_add( &distclean_files, obj_dir_path( make, ".gitignore" ));
3107 for (i = 0; i < make->subdirs.count; i++)
3109 const struct makefile *submake = make->submakes[i];
3111 strarray_add( &makefile_deps, top_src_dir_path( make, base_dir_path( submake,
3112 strmake ( "%s.in", output_makefile_name ))));
3113 strarray_add( &distclean_files, base_dir_path( submake, output_makefile_name ));
3114 if (!make->src_dir) strarray_add( &distclean_files, base_dir_path( submake, ".gitignore" ));
3115 if (submake->testdll) strarray_add( &distclean_files, base_dir_path( submake, "testlist.c" ));
3116 strarray_addall( &build_deps, output_importlib_symlinks( make, submake ));
3118 output( "Makefile:" );
3119 output_filenames( makefile_deps );
3120 output( "\n" );
3121 output( "distclean::\n");
3122 output( "\trm -f" );
3123 output_filenames( distclean_files );
3124 output( "\n" );
3125 strarray_add( &phony_targets, "distclean" );
3127 if (build_deps.count)
3129 output( "__builddeps__:" );
3130 output_filenames( build_deps );
3131 output( "\n" );
3132 strarray_addall( &clean_files, build_deps );
3134 if (get_expanded_make_variable( make, "GETTEXTPO_LIBS" )) output_po_files( make );
3137 if (clean_files.count)
3139 output( "%s::\n", obj_dir_path( make, "clean" ));
3140 output( "\trm -f" );
3141 output_filenames_obj_dir( make, clean_files );
3142 output( "\n" );
3143 if (make->obj_dir) output( "__clean__: %s\n", obj_dir_path( make, "clean" ));
3144 strarray_add( &phony_targets, obj_dir_path( make, "clean" ));
3147 if (phony_targets.count)
3149 output( ".PHONY:" );
3150 output_filenames( phony_targets );
3151 output( "\n" );
3154 if (!make->base_dir)
3155 strarray_addall( &clean_files, get_expanded_make_var_array( make, "CONFIGURE_TARGETS" ));
3156 return clean_files;
3160 /*******************************************************************
3161 * create_temp_file
3163 static FILE *create_temp_file( const char *orig )
3165 char *name = xmalloc( strlen(orig) + 13 );
3166 unsigned int i, id = getpid();
3167 int fd;
3168 FILE *ret = NULL;
3170 for (i = 0; i < 100; i++)
3172 sprintf( name, "%s.tmp%08x", orig, id );
3173 if ((fd = open( name, O_RDWR | O_CREAT | O_EXCL, 0666 )) != -1)
3175 ret = fdopen( fd, "w" );
3176 break;
3178 if (errno != EEXIST) break;
3179 id += 7777;
3181 if (!ret) fatal_error( "failed to create output file for '%s'\n", orig );
3182 temp_file_name = name;
3183 return ret;
3187 /*******************************************************************
3188 * rename_temp_file
3190 static void rename_temp_file( const char *dest )
3192 int ret = rename( temp_file_name, dest );
3193 if (ret == -1 && errno == EEXIST)
3195 /* rename doesn't overwrite on windows */
3196 unlink( dest );
3197 ret = rename( temp_file_name, dest );
3199 if (ret == -1) fatal_error( "failed to rename output file to '%s'\n", dest );
3200 temp_file_name = NULL;
3204 /*******************************************************************
3205 * are_files_identical
3207 static int are_files_identical( FILE *file1, FILE *file2 )
3209 for (;;)
3211 char buffer1[8192], buffer2[8192];
3212 int size1 = fread( buffer1, 1, sizeof(buffer1), file1 );
3213 int size2 = fread( buffer2, 1, sizeof(buffer2), file2 );
3214 if (size1 != size2) return 0;
3215 if (!size1) return feof( file1 ) && feof( file2 );
3216 if (memcmp( buffer1, buffer2, size1 )) return 0;
3221 /*******************************************************************
3222 * rename_temp_file_if_changed
3224 static void rename_temp_file_if_changed( const char *dest )
3226 FILE *file1, *file2;
3227 int do_rename = 1;
3229 if ((file1 = fopen( dest, "r" )))
3231 if ((file2 = fopen( temp_file_name, "r" )))
3233 do_rename = !are_files_identical( file1, file2 );
3234 fclose( file2 );
3236 fclose( file1 );
3238 if (!do_rename)
3240 unlink( temp_file_name );
3241 temp_file_name = NULL;
3243 else rename_temp_file( dest );
3247 /*******************************************************************
3248 * output_linguas
3250 static void output_linguas( const struct makefile *make )
3252 const char *dest = base_dir_path( make, "LINGUAS" );
3253 struct incl_file *source;
3255 output_file = create_temp_file( dest );
3257 output( "# Automatically generated by make depend; DO NOT EDIT!!\n" );
3258 LIST_FOR_EACH_ENTRY( source, &make->sources, struct incl_file, entry )
3259 if (strendswith( source->name, ".po" ))
3260 output( "%s\n", replace_extension( source->name, ".po", "" ));
3262 if (fclose( output_file )) fatal_perror( "write" );
3263 output_file = NULL;
3264 rename_temp_file_if_changed( dest );
3268 /*******************************************************************
3269 * output_testlist
3271 static void output_testlist( const struct makefile *make )
3273 const char *dest = base_dir_path( make, "testlist.c" );
3274 struct strarray files = empty_strarray;
3275 struct incl_file *source;
3276 unsigned int i;
3278 LIST_FOR_EACH_ENTRY( source, &make->sources, struct incl_file, entry )
3280 if (source->file->flags & FLAG_GENERATED) continue;
3281 if (!strendswith( source->name, ".c" )) continue;
3282 strarray_add( &files, replace_extension( source->name, ".c", "" ));
3285 output_file = create_temp_file( dest );
3287 output( "/* Automatically generated by make depend; DO NOT EDIT!! */\n\n" );
3288 output( "#define WIN32_LEAN_AND_MEAN\n" );
3289 output( "#include <windows.h>\n\n" );
3290 output( "#define STANDALONE\n" );
3291 output( "#include \"wine/test.h\"\n\n" );
3293 for (i = 0; i < files.count; i++) output( "extern void func_%s(void);\n", files.str[i] );
3294 output( "\n" );
3295 output( "const struct test winetest_testlist[] =\n" );
3296 output( "{\n" );
3297 for (i = 0; i < files.count; i++) output( " { \"%s\", func_%s },\n", files.str[i], files.str[i] );
3298 output( " { 0, 0 }\n" );
3299 output( "};\n" );
3301 if (fclose( output_file )) fatal_perror( "write" );
3302 output_file = NULL;
3303 rename_temp_file_if_changed( dest );
3307 /*******************************************************************
3308 * output_gitignore
3310 static void output_gitignore( const char *dest, struct strarray files )
3312 int i;
3314 output_file = create_temp_file( dest );
3316 output( "# Automatically generated by make depend; DO NOT EDIT!!\n" );
3317 for (i = 0; i < files.count; i++)
3319 if (!strchr( files.str[i], '/' )) output( "/" );
3320 output( "%s\n", files.str[i] );
3323 if (fclose( output_file )) fatal_perror( "write" );
3324 output_file = NULL;
3325 rename_temp_file( dest );
3329 /*******************************************************************
3330 * output_top_variables
3332 static void output_top_variables( const struct makefile *make )
3334 unsigned int i;
3335 struct strarray *vars = &top_makefile->vars;
3337 if (!make->base_dir) return; /* don't output variables in the top makefile */
3339 output( "# Automatically generated by make depend; DO NOT EDIT!!\n\n" );
3340 output( "all:\n\n" );
3341 for (i = 0; i < vars->count; i += 2)
3343 if (!strcmp( vars->str[i], "SUBDIRS" )) continue; /* not inherited */
3344 output( "%s = %s\n", vars->str[i], get_make_variable( make, vars->str[i] ));
3346 output( "\n" );
3350 /*******************************************************************
3351 * output_dependencies
3353 static void output_dependencies( const struct makefile *make )
3355 struct strarray targets, ignore_files = empty_strarray;
3356 char buffer[1024];
3357 FILE *src_file;
3358 int found = 0;
3360 if (make->base_dir) create_dir( make->base_dir );
3362 output_file_name = base_dir_path( make, output_makefile_name );
3363 output_file = create_temp_file( output_file_name );
3364 output_top_variables( make );
3366 /* copy the contents of the source makefile */
3367 src_file = open_input_makefile( make );
3368 while (fgets( buffer, sizeof(buffer), src_file ) && !found)
3370 if (fwrite( buffer, 1, strlen(buffer), output_file ) != strlen(buffer)) fatal_perror( "write" );
3371 found = !strncmp( buffer, separator, strlen(separator) );
3373 if (fclose( src_file )) fatal_perror( "close" );
3374 input_file_name = NULL;
3376 if (!found) output( "\n%s (everything below this line is auto-generated; DO NOT EDIT!!)\n", separator );
3377 targets = output_sources( make );
3379 fclose( output_file );
3380 output_file = NULL;
3381 rename_temp_file( output_file_name );
3383 strarray_add( &ignore_files, ".gitignore" );
3384 strarray_add( &ignore_files, "Makefile" );
3385 if (make->testdll)
3387 output_testlist( make );
3388 strarray_add( &ignore_files, "testlist.c" );
3390 if (make->base_dir && !strcmp( make->base_dir, "po" ))
3392 output_linguas( make );
3393 strarray_add( &ignore_files, "LINGUAS" );
3395 strarray_addall( &ignore_files, targets );
3396 if (!make->src_dir) output_gitignore( base_dir_path( make, ".gitignore" ), ignore_files );
3398 create_file_directories( make, targets );
3400 output_file_name = NULL;
3404 /*******************************************************************
3405 * load_sources
3407 static void load_sources( struct makefile *make )
3409 static const char *source_vars[] =
3411 "C_SRCS",
3412 "OBJC_SRCS",
3413 "RC_SRCS",
3414 "MC_SRCS",
3415 "IDL_SRCS",
3416 "BISON_SRCS",
3417 "LEX_SRCS",
3418 "HEADER_SRCS",
3419 "XTEMPLATE_SRCS",
3420 "SVG_SRCS",
3421 "FONT_SRCS",
3422 "IN_SRCS",
3423 "PO_SRCS",
3424 "MANPAGES",
3425 NULL
3427 const char **var;
3428 unsigned int i;
3429 struct strarray value;
3430 struct incl_file *file;
3432 if (root_src_dir)
3434 make->top_src_dir = concat_paths( make->top_obj_dir, root_src_dir );
3435 make->src_dir = concat_paths( make->top_src_dir, make->base_dir );
3437 strarray_set_value( &make->vars, "top_builddir", top_obj_dir_path( make, "" ));
3438 strarray_set_value( &make->vars, "top_srcdir", top_src_dir_path( make, "" ));
3439 strarray_set_value( &make->vars, "srcdir", src_dir_path( make, "" ));
3441 make->parent_dir = get_expanded_make_variable( make, "PARENTSRC" );
3442 make->module = get_expanded_make_variable( make, "MODULE" );
3443 make->testdll = get_expanded_make_variable( make, "TESTDLL" );
3444 make->sharedlib = get_expanded_make_variable( make, "SHAREDLIB" );
3445 make->staticlib = get_expanded_make_variable( make, "STATICLIB" );
3446 make->importlib = get_expanded_make_variable( make, "IMPORTLIB" );
3448 make->programs = get_expanded_make_var_array( make, "PROGRAMS" );
3449 make->scripts = get_expanded_make_var_array( make, "SCRIPTS" );
3450 make->appmode = get_expanded_make_var_array( make, "APPMODE" );
3451 make->imports = get_expanded_make_var_array( make, "IMPORTS" );
3452 make->delayimports = get_expanded_make_var_array( make, "DELAYIMPORTS" );
3453 make->extradllflags = get_expanded_make_var_array( make, "EXTRADLLFLAGS" );
3454 make->install_lib = get_expanded_make_var_array( make, "INSTALL_LIB" );
3455 make->install_dev = get_expanded_make_var_array( make, "INSTALL_DEV" );
3457 if (make->module && strendswith( make->module, ".a" )) make->staticlib = make->module;
3459 make->disabled = make->base_dir && strarray_exists( &disabled_dirs, make->base_dir );
3460 make->is_win16 = strarray_exists( &make->extradllflags, "-m16" );
3461 make->use_msvcrt = strarray_exists( &make->appmode, "-mno-cygwin" );
3463 for (i = 0; i < make->imports.count && !make->use_msvcrt; i++)
3464 make->use_msvcrt = !strncmp( make->imports.str[i], "msvcr", 5 ) ||
3465 !strcmp( make->imports.str[i], "ucrtbase" );
3467 if (make->module && !make->install_lib.count && !make->install_dev.count)
3469 if (make->importlib) strarray_add( &make->install_dev, make->importlib );
3470 if (make->staticlib) strarray_add( &make->install_dev, make->staticlib );
3471 else strarray_add( &make->install_lib, make->module );
3474 make->include_paths = empty_strarray;
3475 make->define_args = empty_strarray;
3476 strarray_add( &make->define_args, "-D__WINESRC__" );
3478 value = get_expanded_make_var_array( make, "EXTRAINCL" );
3479 for (i = 0; i < value.count; i++)
3480 if (!strncmp( value.str[i], "-I", 2 ))
3481 strarray_add_uniq( &make->include_paths, value.str[i] + 2 );
3482 else
3483 strarray_add_uniq( &make->define_args, value.str[i] );
3484 strarray_addall( &make->define_args, get_expanded_make_var_array( make, "EXTRADEFS" ));
3486 list_init( &make->sources );
3487 list_init( &make->includes );
3489 for (var = source_vars; *var; var++)
3491 value = get_expanded_make_var_array( make, *var );
3492 for (i = 0; i < value.count; i++) add_src_file( make, value.str[i] );
3495 add_generated_sources( make );
3497 value = get_expanded_make_var_array( make, "EXTRA_OBJS" );
3498 for (i = 0; i < value.count; i++)
3500 /* default to .c for unknown extra object files */
3501 if (strendswith( value.str[i], ".o" ))
3502 add_generated_source( make, value.str[i], replace_extension( value.str[i], ".o", ".c" ) );
3503 else
3504 add_generated_source( make, value.str[i], NULL );
3507 LIST_FOR_EACH_ENTRY( file, &make->includes, struct incl_file, entry ) parse_file( make, file, 0 );
3511 /*******************************************************************
3512 * parse_makeflags
3514 static void parse_makeflags( const char *flags )
3516 const char *p = flags;
3517 char *var, *buffer = xmalloc( strlen(flags) + 1 );
3519 while (*p)
3521 while (isspace(*p)) p++;
3522 var = buffer;
3523 while (*p && !isspace(*p))
3525 if (*p == '\\' && p[1]) p++;
3526 *var++ = *p++;
3528 *var = 0;
3529 if (var > buffer) set_make_variable( &cmdline_vars, buffer );
3534 /*******************************************************************
3535 * parse_option
3537 static int parse_option( const char *opt )
3539 if (opt[0] != '-')
3541 if (strchr( opt, '=' )) return set_make_variable( &cmdline_vars, opt );
3542 return 0;
3544 switch(opt[1])
3546 case 'f':
3547 if (opt[2]) output_makefile_name = opt + 2;
3548 break;
3549 case 'R':
3550 relative_dir_mode = 1;
3551 break;
3552 default:
3553 fprintf( stderr, "Unknown option '%s'\n%s", opt, Usage );
3554 exit(1);
3556 return 1;
3560 /*******************************************************************
3561 * main
3563 int main( int argc, char *argv[] )
3565 const char *makeflags = getenv( "MAKEFLAGS" );
3566 int i, j;
3568 if (makeflags) parse_makeflags( makeflags );
3570 i = 1;
3571 while (i < argc)
3573 if (parse_option( argv[i] ))
3575 for (j = i; j < argc; j++) argv[j] = argv[j+1];
3576 argc--;
3578 else i++;
3581 if (relative_dir_mode)
3583 char *relpath;
3585 if (argc != 3)
3587 fprintf( stderr, "Option -R needs two directories\n%s", Usage );
3588 exit( 1 );
3590 relpath = get_relative_path( argv[1], argv[2] );
3591 printf( "%s\n", relpath ? relpath : "." );
3592 exit( 0 );
3595 atexit( cleanup_files );
3596 signal( SIGTERM, exit_on_signal );
3597 signal( SIGINT, exit_on_signal );
3598 #ifdef SIGHUP
3599 signal( SIGHUP, exit_on_signal );
3600 #endif
3602 for (i = 0; i < HASH_SIZE; i++) list_init( &files[i] );
3604 top_makefile = parse_makefile( NULL );
3606 target_flags = get_expanded_make_var_array( top_makefile, "TARGETFLAGS" );
3607 msvcrt_flags = get_expanded_make_var_array( top_makefile, "MSVCRTFLAGS" );
3608 dll_flags = get_expanded_make_var_array( top_makefile, "DLLFLAGS" );
3609 extra_cflags = get_expanded_make_var_array( top_makefile, "EXTRACFLAGS" );
3610 cpp_flags = get_expanded_make_var_array( top_makefile, "CPPFLAGS" );
3611 unwind_flags = get_expanded_make_var_array( top_makefile, "UNWINDFLAGS" );
3612 libs = get_expanded_make_var_array( top_makefile, "LIBS" );
3614 root_src_dir = get_expanded_make_variable( top_makefile, "srcdir" );
3615 tools_dir = get_expanded_make_variable( top_makefile, "TOOLSDIR" );
3616 tools_ext = get_expanded_make_variable( top_makefile, "TOOLSEXT" );
3617 exe_ext = get_expanded_make_variable( top_makefile, "EXEEXT" );
3618 man_ext = get_expanded_make_variable( top_makefile, "api_manext" );
3619 dll_ext = (exe_ext && !strcmp( exe_ext, ".exe" )) ? "" : ".so";
3620 crosstarget = get_expanded_make_variable( top_makefile, "CROSSTARGET" );
3621 fontforge = get_expanded_make_variable( top_makefile, "FONTFORGE" );
3622 convert = get_expanded_make_variable( top_makefile, "CONVERT" );
3623 rsvg = get_expanded_make_variable( top_makefile, "RSVG" );
3624 icotool = get_expanded_make_variable( top_makefile, "ICOTOOL" );
3625 dlltool = get_expanded_make_variable( top_makefile, "DLLTOOL" );
3626 msgfmt = get_expanded_make_variable( top_makefile, "MSGFMT" );
3627 ln_s = get_expanded_make_variable( top_makefile, "LN_S" );
3629 if (root_src_dir && !strcmp( root_src_dir, "." )) root_src_dir = NULL;
3630 if (tools_dir && !strcmp( tools_dir, "." )) tools_dir = NULL;
3631 if (!exe_ext) exe_ext = "";
3632 if (!tools_ext) tools_ext = "";
3633 if (!man_ext) man_ext = "3w";
3635 if (argc == 1)
3637 disabled_dirs = get_expanded_make_var_array( top_makefile, "DISABLED_SUBDIRS" );
3638 top_makefile->subdirs = get_expanded_make_var_array( top_makefile, "SUBDIRS" );
3639 top_makefile->submakes = xmalloc( top_makefile->subdirs.count * sizeof(*top_makefile->submakes) );
3641 for (i = 0; i < top_makefile->subdirs.count; i++)
3642 top_makefile->submakes[i] = parse_makefile( top_makefile->subdirs.str[i] );
3644 load_sources( top_makefile );
3645 for (i = 0; i < top_makefile->subdirs.count; i++)
3646 load_sources( top_makefile->submakes[i] );
3648 for (i = 0; i < top_makefile->subdirs.count; i++)
3649 output_dependencies( top_makefile->submakes[i] );
3651 output_dependencies( top_makefile );
3652 return 0;
3655 for (i = 1; i < argc; i++)
3657 struct makefile *make = parse_makefile( argv[i] );
3658 load_sources( make );
3659 output_dependencies( make );
3661 return 0;