makedep.c 129 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3
/*
 * Generate include file dependencies
 *
4
 * Copyright 1996, 2013 Alexandre Julliard
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * 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
Alexandre Julliard's avatar
Alexandre Julliard committed
19 20
 */

21
#include "config.h"
22
#define NO_LIBWINE_PORT
23 24
#include "wine/port.h"

25
#include <assert.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
26
#include <ctype.h>
27
#include <errno.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
28 29
#include <stdio.h>
#include <stdlib.h>
30
#include <stdarg.h>
31
#include <signal.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
32
#include <string.h>
33 34 35
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
36
#include "wine/list.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
37

38 39 40 41 42
enum incl_type
{
    INCL_NORMAL,           /* #include "foo.h" */
    INCL_SYSTEM,           /* #include <foo.h> */
    INCL_IMPORT,           /* idl import "foo.idl" */
43
    INCL_IMPORTLIB,        /* idl importlib "foo.tlb" */
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
    INCL_CPP_QUOTE,        /* idl cpp_quote("#include \"foo.h\"") */
    INCL_CPP_QUOTE_SYSTEM  /* idl cpp_quote("#include <foo.h>") */
};

struct dependency
{
    int                line;          /* source line where this header is included */
    enum incl_type     type;          /* type of include */
    char              *name;          /* header name */
};

struct file
{
    struct list        entry;
    char              *name;          /* full file name relative to cwd */
    void              *args;          /* custom arguments for makefile rule */
    unsigned int       flags;         /* flags (see below) */
    unsigned int       deps_count;    /* files in use */
    unsigned int       deps_size;     /* total allocated size */
    struct dependency *deps;          /* all header dependencies */
};

66
struct incl_file
Alexandre Julliard's avatar
Alexandre Julliard committed
67
{
68
    struct list        entry;
69
    struct file       *file;
Alexandre Julliard's avatar
Alexandre Julliard committed
70 71
    char              *name;
    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 78 79
    unsigned int       files_count;   /* files in use */
    unsigned int       files_size;    /* total allocated size */
    struct incl_file **files;
80
};
Alexandre Julliard's avatar
Alexandre Julliard committed
81

82 83
#define FLAG_GENERATED      0x000001  /* generated file */
#define FLAG_INSTALL        0x000002  /* file to install */
84 85 86 87 88 89 90 91 92 93
#define FLAG_IDL_PROXY      0x000100  /* generates a proxy (_p.c) file */
#define FLAG_IDL_CLIENT     0x000200  /* generates a client (_c.c) file */
#define FLAG_IDL_SERVER     0x000400  /* generates a server (_s.c) file */
#define FLAG_IDL_IDENT      0x000800  /* generates an ident (_i.c) file */
#define FLAG_IDL_REGISTER   0x001000  /* generates a registration (_r.res) file */
#define FLAG_IDL_TYPELIB    0x002000  /* generates a typelib (.tlb) file */
#define FLAG_IDL_REGTYPELIB 0x004000  /* generates a registered typelib (_t.res) file */
#define FLAG_IDL_HEADER     0x008000  /* generates a header (.h) file */
#define FLAG_RC_PO          0x010000  /* rc file contains translations */
#define FLAG_C_IMPLIB       0x020000 /* file is part of an import library */
94
#define FLAG_SFD_FONTS      0x040000 /* sfd file generated bitmap fonts */
95 96 97 98 99 100 101

static const struct
{
    unsigned int flag;
    const char *ext;
} idl_outputs[] =
{
102 103 104 105 106 107 108 109
    { FLAG_IDL_TYPELIB,    ".tlb" },
    { FLAG_IDL_REGTYPELIB, "_t.res" },
    { FLAG_IDL_CLIENT,     "_c.c" },
    { FLAG_IDL_IDENT,      "_i.c" },
    { FLAG_IDL_PROXY,      "_p.c" },
    { FLAG_IDL_SERVER,     "_s.c" },
    { FLAG_IDL_REGISTER,   "_r.res" },
    { FLAG_IDL_HEADER,     ".h" }
110 111
};

112
#define HASH_SIZE 997
113 114

static struct list files[HASH_SIZE];
Alexandre Julliard's avatar
Alexandre Julliard committed
115

116 117 118 119 120 121 122
struct strarray
{
    unsigned int count;  /* strings in use */
    unsigned int size;   /* total allocated size */
    const char **str;
};

123 124
static const struct strarray empty_strarray;

125 126
enum install_rules { INSTALL_LIB, INSTALL_DEV, NB_INSTALL_RULES };

127 128 129 130 131 132 133 134 135 136
/* variables common to all makefiles */
static struct strarray linguas;
static struct strarray dll_flags;
static struct strarray target_flags;
static struct strarray msvcrt_flags;
static struct strarray extra_cflags;
static struct strarray cpp_flags;
static struct strarray unwind_flags;
static struct strarray libs;
static struct strarray cmdline_vars;
137
static struct strarray disabled_dirs;
138 139 140 141 142 143 144 145 146 147 148
static const char *root_src_dir;
static const char *tools_dir;
static const char *tools_ext;
static const char *exe_ext;
static const char *dll_ext;
static const char *man_ext;
static const char *crosstarget;
static const char *fontforge;
static const char *convert;
static const char *rsvg;
static const char *icotool;
149
static const char *dlltool;
150
static const char *msgfmt;
151
static const char *ln_s;
152

153 154 155
struct makefile
{
    struct strarray vars;
156
    struct strarray include_paths;
157
    struct strarray define_args;
158
    struct strarray programs;
159
    struct strarray scripts;
160 161
    struct strarray appmode;
    struct strarray imports;
162
    struct strarray subdirs;
163 164
    struct strarray delayimports;
    struct strarray extradllflags;
165 166
    struct strarray install_lib;
    struct strarray install_dev;
167
    struct list     sources;
168
    struct list     includes;
169 170
    const char     *base_dir;
    const char     *src_dir;
171
    const char     *obj_dir;
172 173 174
    const char     *top_src_dir;
    const char     *top_obj_dir;
    const char     *parent_dir;
175 176
    const char     *module;
    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;
185 186
};

187
static struct makefile *top_makefile;
188

189
static const char separator[] = "### Dependencies";
190
static const char *output_makefile_name = "Makefile";
191
static const char *input_file_name;
192 193
static const char *output_file_name;
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;
Alexandre Julliard's avatar
Alexandre Julliard committed
198 199

static const char Usage[] =
200
    "Usage: makedep [options] [directories]\n"
Alexandre Julliard's avatar
Alexandre Julliard committed
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";
Alexandre Julliard's avatar
Alexandre Julliard committed
204 205


206 207 208 209 210 211
#ifndef __GNUC__
#define __attribute__(x)
#endif

static void fatal_error( const char *msg, ... ) __attribute__ ((__format__ (__printf__, 1, 2)));
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)));
214

215 216 217 218 219 220 221
/*******************************************************************
 *         fatal_error
 */
static void fatal_error( const char *msg, ... )
{
    va_list valist;
    va_start( valist, msg );
222 223 224 225 226 227 228
    if (input_file_name)
    {
        fprintf( stderr, "%s:", input_file_name );
        if (input_line) fprintf( stderr, "%d:", input_line );
        fprintf( stderr, " error: " );
    }
    else fprintf( stderr, "makedep: error: " );
229 230 231 232 233 234
    vfprintf( stderr, msg, valist );
    va_end( valist );
    exit(1);
}


235 236 237 238 239 240 241 242 243 244 245
/*******************************************************************
 *         fatal_perror
 */
static void fatal_perror( const char *msg, ... )
{
    va_list valist;
    va_start( valist, msg );
    if (input_file_name)
    {
        fprintf( stderr, "%s:", input_file_name );
        if (input_line) fprintf( stderr, "%d:", input_line );
246
        fprintf( stderr, " error: " );
247
    }
248 249
    else fprintf( stderr, "makedep: error: " );
    vfprintf( stderr, msg, valist );
250 251 252 253 254 255
    perror( " " );
    va_end( valist );
    exit(1);
}


256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
/*******************************************************************
 *         cleanup_files
 */
static void cleanup_files(void)
{
    if (temp_file_name) unlink( temp_file_name );
    if (output_file_name) unlink( output_file_name );
}


/*******************************************************************
 *         exit_on_signal
 */
static void exit_on_signal( int sig )
{
    exit( 1 );  /* this will call the atexit functions */
}


Alexandre Julliard's avatar
Alexandre Julliard committed
275 276 277
/*******************************************************************
 *         xmalloc
 */
278
static void *xmalloc( size_t size )
Alexandre Julliard's avatar
Alexandre Julliard committed
279 280 281
{
    void *res;
    if (!(res = malloc (size ? size : 1)))
282
        fatal_error( "Virtual memory exhausted.\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
283 284 285 286
    return res;
}


287 288 289
/*******************************************************************
 *         xrealloc
 */
290
static void *xrealloc (void *ptr, size_t size)
291 292 293 294
{
    void *res;
    assert( size );
    if (!(res = realloc( ptr, size )))
295
        fatal_error( "Virtual memory exhausted.\n" );
296 297 298
    return res;
}

Alexandre Julliard's avatar
Alexandre Julliard committed
299 300 301 302 303 304
/*******************************************************************
 *         xstrdup
 */
static char *xstrdup( const char *str )
{
    char *res = strdup( str );
305
    if (!res) fatal_error( "Virtual memory exhausted.\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
306 307 308 309
    return res;
}


310 311 312
/*******************************************************************
 *         strmake
 */
313
static char *strmake( const char* fmt, ... )
314 315 316 317 318 319 320 321 322 323 324 325 326
{
    int n;
    size_t size = 100;
    va_list ap;

    for (;;)
    {
        char *p = xmalloc (size);
        va_start(ap, fmt);
        n = vsnprintf (p, size, fmt, ap);
        va_end(ap);
        if (n == -1) size *= 2;
        else if ((size_t)n >= size) size = n + 1;
327
        else return xrealloc( p, n + 1 );
328 329 330 331 332
        free(p);
    }
}


333 334 335 336 337
/*******************************************************************
 *         strendswith
 */
static int strendswith( const char* str, const char* end )
{
338 339
    size_t l = strlen( str );
    size_t m = strlen( end );
340 341 342 343

    return l >= m && strcmp(str + l - m, end) == 0;
}

344 345 346 347

/*******************************************************************
 *         output
 */
348
static void output( const char *format, ... )
349 350 351 352 353 354 355 356
{
    int ret;
    va_list valist;

    va_start( valist, format );
    ret = vfprintf( output_file, format, valist );
    va_end( valist );
    if (ret < 0) fatal_perror( "output" );
357 358
    if (format[0] && format[strlen(format) - 1] == '\n') output_column = 0;
    else output_column += ret;
359 360 361
}


362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
/*******************************************************************
 *         strarray_add
 */
static void strarray_add( struct strarray *array, const char *str )
{
    if (array->count == array->size)
    {
	if (array->size) array->size *= 2;
        else array->size = 16;
	array->str = xrealloc( array->str, sizeof(array->str[0]) * array->size );
    }
    array->str[array->count++] = str;
}


377 378 379
/*******************************************************************
 *         strarray_addall
 */
380
static void strarray_addall( struct strarray *array, struct strarray added )
381 382 383
{
    unsigned int i;

384
    for (i = 0; i < added.count; i++) strarray_add( array, added.str[i] );
385 386 387
}


388
/*******************************************************************
389
 *         strarray_exists
390
 */
391
static int strarray_exists( const struct strarray *array, const char *str )
392 393 394
{
    unsigned int i;

395 396 397 398 399 400 401 402 403 404 405
    for (i = 0; i < array->count; i++) if (!strcmp( array->str[i], str )) return 1;
    return 0;
}


/*******************************************************************
 *         strarray_add_uniq
 */
static void strarray_add_uniq( struct strarray *array, const char *str )
{
    if (!strarray_exists( array, str )) strarray_add( array, str );
406 407 408
}


409 410 411 412 413
/*******************************************************************
 *         strarray_get_value
 *
 * Find a value in a name/value pair string array.
 */
414
static const char *strarray_get_value( const struct strarray *array, const char *name )
415
{
416
    int pos, res, min = 0, max = array->count / 2 - 1;
417

418 419 420 421 422 423 424
    while (min <= max)
    {
        pos = (min + max) / 2;
        if (!(res = strcmp( array->str[pos * 2], name ))) return array->str[pos * 2 + 1];
        if (res < 0) min = pos + 1;
        else max = pos - 1;
    }
425 426 427 428 429 430 431 432 433 434 435
    return NULL;
}


/*******************************************************************
 *         strarray_set_value
 *
 * Define a value in a name/value pair string array.
 */
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;
437

438
    while (min <= max)
439
    {
440 441 442 443 444 445 446 447 448
        pos = (min + max) / 2;
        if (!(res = strcmp( array->str[pos * 2], name )))
        {
            /* redefining a variable replaces the previous value */
            array->str[pos * 2 + 1] = value;
            return;
        }
        if (res < 0) min = pos + 1;
        else max = pos - 1;
449
    }
450 451 452 453 454
    strarray_add( array, NULL );
    strarray_add( array, NULL );
    for (i = array->count - 1; i > min * 2 + 1; i--) array->str[i] = array->str[i - 2];
    array->str[min * 2] = name;
    array->str[min * 2 + 1] = value;
455 456 457
}


458 459 460
/*******************************************************************
 *         output_filename
 */
461
static void output_filename( const char *name )
462
{
463
    if (output_column + strlen(name) + 1 > 100)
464
    {
465 466
        output( " \\\n" );
        output( "  " );
467
    }
468 469
    else if (output_column) output( " " );
    output( "%s", name );
470 471 472 473 474 475
}


/*******************************************************************
 *         output_filenames
 */
476
static void output_filenames( struct strarray array )
477 478 479
{
    unsigned int i;

480
    for (i = 0; i < array.count; i++) output_filename( array.str[i] );
481 482 483
}


484 485 486 487 488 489 490 491 492 493 494
/*******************************************************************
 *         get_extension
 */
static char *get_extension( char *filename )
{
    char *ext = strrchr( filename, '.' );
    if (ext && strchr( ext, '/' )) ext = NULL;
    return ext;
}


495 496 497
/*******************************************************************
 *         replace_extension
 */
498
static char *replace_extension( const char *name, const char *old_ext, const char *new_ext )
499
{
500
    char *ret;
501 502
    size_t name_len = strlen( name );
    size_t ext_len = strlen( old_ext );
503 504 505 506 507

    if (name_len >= ext_len && !strcmp( name + name_len - ext_len, old_ext )) name_len -= ext_len;
    ret = xmalloc( name_len + strlen( new_ext ) + 1 );
    memcpy( ret, name, name_len );
    strcpy( ret + name_len, new_ext );
508 509 510 511
    return ret;
}


512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
/*******************************************************************
 *         replace_filename
 */
static char *replace_filename( const char *path, const char *name )
{
    const char *p;
    char *ret;
    size_t len;

    if (!path) return xstrdup( name );
    if (!(p = strrchr( path, '/' ))) return xstrdup( name );
    len = p - path + 1;
    ret = xmalloc( len + strlen( name ) + 1 );
    memcpy( ret, path, len );
    strcpy( ret + len, name );
    return ret;
}


531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
/*******************************************************************
 *         strarray_replace_extension
 */
static struct strarray strarray_replace_extension( const struct strarray *array,
                                                   const char *old_ext, const char *new_ext )
{
    unsigned int i;
    struct strarray ret;

    ret.count = ret.size = array->count;
    ret.str = xmalloc( sizeof(ret.str[0]) * ret.size );
    for (i = 0; i < array->count; i++) ret.str[i] = replace_extension( array->str[i], old_ext, new_ext );
    return ret;
}


547 548 549
/*******************************************************************
 *         replace_substr
 */
550
static char *replace_substr( const char *str, const char *start, size_t len, const char *replace )
551
{
552
    size_t pos = start - str;
553 554 555 556 557 558 559 560
    char *ret = xmalloc( pos + strlen(replace) + strlen(start + len) + 1 );
    memcpy( ret, str, pos );
    strcpy( ret + pos, replace );
    strcat( ret + pos, start + len );
    return ret;
}


561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
/*******************************************************************
 *         get_relative_path
 *
 * Determine where the destination path is located relative to the 'from' path.
 */
static char *get_relative_path( const char *from, const char *dest )
{
    const char *start;
    char *ret, *p;
    unsigned int dotdots = 0;

    /* a path of "." is equivalent to an empty path */
    if (!strcmp( from, "." )) from = "";

    for (;;)
    {
        while (*from == '/') from++;
        while (*dest == '/') dest++;
        start = dest;  /* save start of next path element */
        if (!*from) break;

        while (*from && *from != '/' && *from == *dest) { from++; dest++; }
        if ((!*from || *from == '/') && (!*dest || *dest == '/')) continue;

        /* count remaining elements in 'from' */
        do
        {
            dotdots++;
            while (*from && *from != '/') from++;
            while (*from == '/') from++;
        }
        while (*from);
        break;
    }

    if (!start[0] && !dotdots) return NULL;  /* empty path */

    ret = xmalloc( 3 * dotdots + strlen( start ) + 1 );
    for (p = ret; dotdots; dotdots--, p += 3) memcpy( p, "../", 3 );

    if (start[0]) strcpy( p, start );
    else p[-1] = 0;  /* remove trailing slash */
    return ret;
}


607 608 609 610 611
/*******************************************************************
 *         concat_paths
 */
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 615 616 617 618
    if (path[0] == '/') return xstrdup( path );
    return strmake( "%s/%s", base, path );
}


619 620 621
/*******************************************************************
 *         base_dir_path
 */
622
static char *base_dir_path( const struct makefile *make, const char *path )
623
{
624
    return concat_paths( make->base_dir, path );
625 626 627
}


628 629 630
/*******************************************************************
 *         obj_dir_path
 */
631
static char *obj_dir_path( const struct makefile *make, const char *path )
632 633 634 635 636
{
    return concat_paths( make->obj_dir, path );
}


637 638 639
/*******************************************************************
 *         src_dir_path
 */
640
static char *src_dir_path( const struct makefile *make, const char *path )
641
{
642
    if (make->src_dir) return concat_paths( make->src_dir, path );
643
    return obj_dir_path( make, path );
644 645 646 647 648 649
}


/*******************************************************************
 *         top_obj_dir_path
 */
650
static char *top_obj_dir_path( const struct makefile *make, const char *path )
651
{
652
    return concat_paths( make->top_obj_dir, path );
653 654 655 656
}


/*******************************************************************
657
 *         top_src_dir_path
658
 */
659
static char *top_src_dir_path( const struct makefile *make, const char *path )
660
{
661
    if (make->top_src_dir) return concat_paths( make->top_src_dir, path );
662
    return top_obj_dir_path( make, path );
663 664 665
}


666 667 668 669 670 671 672 673 674
/*******************************************************************
 *         root_dir_path
 */
static char *root_dir_path( const char *path )
{
    return concat_paths( root_src_dir, path );
}


675 676 677
/*******************************************************************
 *         tools_dir_path
 */
678
static char *tools_dir_path( const struct makefile *make, const char *path )
679
{
680 681
    if (tools_dir) return top_obj_dir_path( make, strmake( "%s/tools/%s", tools_dir, path ));
    return top_obj_dir_path( make, strmake( "tools/%s", path ));
682 683 684
}


685 686 687
/*******************************************************************
 *         tools_path
 */
688
static char *tools_path( const struct makefile *make, const char *name )
689
{
690
    return strmake( "%s/%s%s", tools_dir_path( make, name ), name, tools_ext );
691 692 693
}


694 695 696 697 698 699
/*******************************************************************
 *         get_line
 */
static char *get_line( FILE *file )
{
    static char *buffer;
700
    static size_t size;
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716

    if (!size)
    {
        size = 1024;
        buffer = xmalloc( size );
    }
    if (!fgets( buffer, size, file )) return NULL;
    input_line++;

    for (;;)
    {
        char *p = buffer + strlen(buffer);
        /* if line is larger than buffer, resize buffer */
        while (p == buffer + size - 1 && p[-1] != '\n')
        {
            buffer = xrealloc( buffer, size * 2 );
717
            if (!fgets( buffer + size - 1, size + 1, file )) break;
718 719 720 721 722 723 724 725 726 727 728
            p = buffer + strlen(buffer);
            size *= 2;
        }
        if (p > buffer && p[-1] == '\n')
        {
            *(--p) = 0;
            if (p > buffer && p[-1] == '\r') *(--p) = 0;
            if (p > buffer && p[-1] == '\\')
            {
                *(--p) = 0;
                /* line ends in backslash, read continuation line */
729
                if (!fgets( p, size - (p - buffer), file )) return buffer;
730 731 732 733 734 735 736 737
                input_line++;
                continue;
            }
        }
        return buffer;
    }
}

738 739 740 741 742 743

/*******************************************************************
 *         hash_filename
 */
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 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
    return ret % HASH_SIZE;
}


/*******************************************************************
 *         add_file
 */
static struct file *add_file( const char *name )
{
    struct file *file = xmalloc( sizeof(*file) );
    memset( file, 0, sizeof(*file) );
    file->name = xstrdup( name );
    return file;
}


/*******************************************************************
 *         add_dependency
 */
static void add_dependency( struct file *file, const char *name, enum incl_type type )
{
    /* enforce some rules for the Wine tree */

    if (!memcmp( name, "../", 3 ))
        fatal_error( "#include directive with relative path not allowed\n" );

    if (!strcmp( name, "config.h" ))
    {
        if (strendswith( file->name, ".h" ))
            fatal_error( "config.h must not be included by a header file\n" );
        if (file->deps_count)
            fatal_error( "config.h must be included before anything else\n" );
    }
    else if (!strcmp( name, "wine/port.h" ))
    {
        if (strendswith( file->name, ".h" ))
            fatal_error( "wine/port.h must not be included by a header file\n" );
        if (!file->deps_count) fatal_error( "config.h must be included before wine/port.h\n" );
        if (file->deps_count > 1)
            fatal_error( "wine/port.h must be included before everything except config.h\n" );
        if (strcmp( file->deps[0].name, "config.h" ))
            fatal_error( "config.h must be included before wine/port.h\n" );
    }

    if (file->deps_count >= file->deps_size)
    {
        file->deps_size *= 2;
        if (file->deps_size < 16) file->deps_size = 16;
        file->deps = xrealloc( file->deps, file->deps_size * sizeof(*file->deps) );
    }
    file->deps[file->deps_count].line = input_line;
    file->deps[file->deps_count].type = type;
    file->deps[file->deps_count].name = xstrdup( name );
    file->deps_count++;
}


804 805 806
/*******************************************************************
 *         find_src_file
 */
807
static struct incl_file *find_src_file( const struct makefile *make, const char *name )
808
{
809
    struct incl_file *file;
810

811
    LIST_FOR_EACH_ENTRY( file, &make->sources, struct incl_file, entry )
812 813 814
        if (!strcmp( name, file->name )) return file;
    return NULL;
}
Alexandre Julliard's avatar
Alexandre Julliard committed
815

816 817 818
/*******************************************************************
 *         find_include_file
 */
819
static struct incl_file *find_include_file( const struct makefile *make, const char *name )
820
{
821
    struct incl_file *file;
822

823
    LIST_FOR_EACH_ENTRY( file, &make->includes, struct incl_file, entry )
824 825 826 827
        if (!strcmp( name, file->name )) return file;
    return NULL;
}

Alexandre Julliard's avatar
Alexandre Julliard committed
828 829 830 831 832
/*******************************************************************
 *         add_include
 *
 * 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 )
Alexandre Julliard's avatar
Alexandre Julliard committed
835
{
836
    struct incl_file *include;
Alexandre Julliard's avatar
Alexandre Julliard committed
837

838 839 840 841 842 843
    if (parent->files_count >= parent->files_size)
    {
        parent->files_size *= 2;
        if (parent->files_size < 16) parent->files_size = 16;
        parent->files = xrealloc( parent->files, parent->files_size * sizeof(*parent->files) );
    }
844

845
    LIST_FOR_EACH_ENTRY( include, &make->includes, struct incl_file, entry )
846 847
        if (!strcmp( name, include->name )) goto found;

848 849
    include = xmalloc( sizeof(*include) );
    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;
Alexandre Julliard's avatar
Alexandre Julliard committed
858 859 860
}


861 862 863 864 865
/*******************************************************************
 *         add_generated_source
 *
 * Add a generated source file to the list.
 */
866 867
static struct incl_file *add_generated_source( struct makefile *make,
                                               const char *name, const char *filename )
868 869 870
{
    struct incl_file *file;

871
    if ((file = find_src_file( make, name ))) return file;  /* we already have it */
872 873
    file = xmalloc( sizeof(*file) );
    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 880 881 882
    return file;
}


883 884 885
/*******************************************************************
 *         parse_include_directive
 */
886
static void parse_include_directive( struct file *source, char *str )
887 888 889 890 891 892 893 894 895 896 897
{
    char quote, *include, *p = str;

    while (*p && isspace(*p)) p++;
    if (*p != '\"' && *p != '<' ) return;
    quote = *p++;
    if (quote == '<') quote = '>';
    include = p;
    while (*p && (*p != quote)) p++;
    if (!*p) fatal_error( "malformed include directive '%s'\n", str );
    *p = 0;
898
    add_dependency( source, include, (quote == '>') ? INCL_SYSTEM : INCL_NORMAL );
899 900 901 902 903 904
}


/*******************************************************************
 *         parse_pragma_directive
 */
905
static void parse_pragma_directive( struct file *source, char *str )
906 907 908 909 910 911 912 913 914 915 916 917
{
    char *flag, *p = str;

    if (!isspace( *p )) return;
    while (*p && isspace(*p)) p++;
    p = strtok( p, " \t" );
    if (strcmp( p, "makedep" )) return;

    while ((flag = strtok( NULL, " \t" )))
    {
        if (!strcmp( flag, "depend" ))
        {
918
            while ((p = strtok( NULL, " \t" ))) add_dependency( source, p, INCL_NORMAL );
919 920
            return;
        }
921 922
        else if (!strcmp( flag, "install" )) source->flags |= FLAG_INSTALL;

923 924 925 926 927 928 929 930 931
        if (strendswith( source->name, ".idl" ))
        {
            if (!strcmp( flag, "header" )) source->flags |= FLAG_IDL_HEADER;
            else if (!strcmp( flag, "proxy" )) source->flags |= FLAG_IDL_PROXY;
            else if (!strcmp( flag, "client" )) source->flags |= FLAG_IDL_CLIENT;
            else if (!strcmp( flag, "server" )) source->flags |= FLAG_IDL_SERVER;
            else if (!strcmp( flag, "ident" )) source->flags |= FLAG_IDL_IDENT;
            else if (!strcmp( flag, "typelib" )) source->flags |= FLAG_IDL_TYPELIB;
            else if (!strcmp( flag, "register" )) source->flags |= FLAG_IDL_REGISTER;
932
            else if (!strcmp( flag, "regtypelib" )) source->flags |= FLAG_IDL_REGTYPELIB;
933 934 935 936 937
        }
        else if (strendswith( source->name, ".rc" ))
        {
            if (!strcmp( flag, "po" )) source->flags |= FLAG_RC_PO;
        }
938 939 940 941
        else if (strendswith( source->name, ".sfd" ))
        {
            if (!strcmp( flag, "font" ))
            {
942 943 944 945 946 947 948 949 950
                struct strarray *array = source->args;

                if (!array)
                {
                    source->args = array = xmalloc( sizeof(*array) );
                    *array = empty_strarray;
                    source->flags |= FLAG_SFD_FONTS;
                }
                strarray_add( array, xstrdup( strtok( NULL, "" )));
951 952 953
                return;
            }
        }
954
        else if (!strcmp( flag, "implib" )) source->flags |= FLAG_C_IMPLIB;
955 956 957 958 959 960 961
    }
}


/*******************************************************************
 *         parse_cpp_directive
 */
962
static void parse_cpp_directive( struct file *source, char *str )
963 964 965 966 967 968 969 970 971 972 973 974 975 976
{
    while (*str && isspace(*str)) str++;
    if (*str++ != '#') return;
    while (*str && isspace(*str)) str++;

    if (!strncmp( str, "include", 7 ))
        parse_include_directive( source, str + 7 );
    else if (!strncmp( str, "import", 6 ) && strendswith( source->name, ".m" ))
        parse_include_directive( source, str + 6 );
    else if (!strncmp( str, "pragma", 6 ))
        parse_pragma_directive( source, str + 6 );
}


Alexandre Julliard's avatar
Alexandre Julliard committed
977
/*******************************************************************
978
 *         parse_idl_file
Alexandre Julliard's avatar
Alexandre Julliard committed
979
 */
980
static void parse_idl_file( struct file *source, FILE *file )
Alexandre Julliard's avatar
Alexandre Julliard committed
981
{
982
    char *buffer, *include;
983

984
    input_line = 0;
985

986
    while ((buffer = get_line( file )))
987
    {
988
        char quote;
989 990
        char *p = buffer;
        while (*p && isspace(*p)) p++;
991

992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
        if (!strncmp( p, "importlib", 9 ))
        {
            p += 9;
            while (*p && isspace(*p)) p++;
            if (*p++ != '(') continue;
            while (*p && isspace(*p)) p++;
            if (*p++ != '"') continue;
            include = p;
            while (*p && (*p != '"')) p++;
            if (!*p) fatal_error( "malformed importlib directive\n" );
            *p = 0;
            add_dependency( source, include, INCL_IMPORTLIB );
            continue;
        }

1007 1008 1009 1010
        if (!strncmp( p, "import", 6 ))
        {
            p += 6;
            while (*p && isspace(*p)) p++;
1011 1012 1013
            if (*p != '"') continue;
            include = ++p;
            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;
1018
        }
1019

1020 1021
        /* check for #include inside cpp_quote */
        if (!strncmp( p, "cpp_quote", 9 ))
1022
        {
1023 1024 1025 1026 1027
            p += 9;
            while (*p && isspace(*p)) p++;
            if (*p++ != '(') continue;
            while (*p && isspace(*p)) p++;
            if (*p++ != '"') continue;
1028 1029 1030 1031 1032
            if (*p++ != '#') continue;
            while (*p && isspace(*p)) p++;
            if (strncmp( p, "include", 7 )) continue;
            p += 7;
            while (*p && isspace(*p)) p++;
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
            if (*p == '\\' && p[1] == '"')
            {
                p += 2;
                quote = '"';
            }
            else
            {
                if (*p++ != '<' ) continue;
                quote = '>';
            }
            include = p;
            while (*p && (*p != quote)) p++;
            if (!*p || (quote == '"' && p[-1] != '\\'))
1046
                fatal_error( "malformed #include directive inside cpp_quote\n" );
1047 1048
            if (quote == '"') p--;  /* remove backslash */
            *p = 0;
1049
            add_dependency( source, include, (quote == '>') ? INCL_CPP_QUOTE_SYSTEM : INCL_CPP_QUOTE );
1050
            continue;
1051 1052
        }

1053
        parse_cpp_directive( source, p );
1054
    }
1055
}
1056

1057 1058 1059
/*******************************************************************
 *         parse_c_file
 */
1060
static void parse_c_file( struct file *source, FILE *file )
1061
{
1062
    char *buffer;
Alexandre Julliard's avatar
Alexandre Julliard committed
1063

1064 1065
    input_line = 0;
    while ((buffer = get_line( file )))
Alexandre Julliard's avatar
Alexandre Julliard committed
1066
    {
1067
        parse_cpp_directive( source, buffer );
Alexandre Julliard's avatar
Alexandre Julliard committed
1068
    }
1069 1070 1071
}


1072 1073 1074
/*******************************************************************
 *         parse_rc_file
 */
1075
static void parse_rc_file( struct file *source, FILE *file )
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
{
    char *buffer, *include;

    input_line = 0;
    while ((buffer = get_line( file )))
    {
        char quote;
        char *p = buffer;
        while (*p && isspace(*p)) p++;

        if (p[0] == '/' && p[1] == '*')  /* check for magic makedep comment */
        {
            p += 2;
            while (*p && isspace(*p)) p++;
            if (strncmp( p, "@makedep:", 9 )) continue;
            p += 9;
            while (*p && isspace(*p)) p++;
            quote = '"';
            if (*p == quote)
            {
                include = ++p;
                while (*p && *p != quote) p++;
            }
            else
            {
                include = p;
                while (*p && !isspace(*p) && *p != '*') p++;
            }
            if (!*p)
1105
                fatal_error( "malformed makedep comment\n" );
1106
            *p = 0;
1107
            add_dependency( source, include, (quote == '>') ? INCL_SYSTEM : INCL_NORMAL );
1108
            continue;
1109
        }
1110

1111
        parse_cpp_directive( source, buffer );
1112 1113 1114 1115
    }
}


1116
/*******************************************************************
1117
 *         parse_in_file
1118
 */
1119
static void parse_in_file( struct file *source, FILE *file )
1120 1121 1122 1123
{
    char *p, *buffer;

    /* make sure it gets rebuilt when the version changes */
1124
    add_dependency( source, "config.h", INCL_SYSTEM );
1125

1126
    if (!strendswith( source->name, ".man.in" )) return;  /* not a man page */
1127

1128 1129 1130 1131 1132 1133 1134
    input_line = 0;
    while ((buffer = get_line( file )))
    {
        if (strncmp( buffer, ".TH", 3 )) continue;
        if (!(p = strtok( buffer, " \t" ))) continue;  /* .TH */
        if (!(p = strtok( NULL, " \t" ))) continue;  /* program name */
        if (!(p = strtok( NULL, " \t" ))) continue;  /* man section */
1135 1136 1137 1138 1139 1140 1141 1142 1143
        source->args = xstrdup( p );
        return;
    }
}


/*******************************************************************
 *         parse_sfd_file
 */
1144
static void parse_sfd_file( struct file *source, FILE *file )
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
{
    char *p, *eol, *buffer;

    input_line = 0;
    while ((buffer = get_line( file )))
    {
        if (strncmp( buffer, "UComments:", 10 )) continue;
        p = buffer + 10;
        while (*p == ' ') p++;
        if (p[0] == '"' && p[1] && buffer[strlen(buffer) - 1] == '"')
        {
            p++;
            buffer[strlen(buffer) - 1] = 0;
        }
        while ((eol = strstr( p, "+AAoA" )))
        {
            *eol = 0;
            while (*p && isspace(*p)) p++;
            if (*p++ == '#')
            {
                while (*p && isspace(*p)) p++;
                if (!strncmp( p, "pragma", 6 )) parse_pragma_directive( source, p + 6 );
            }
            p = eol + 5;
        }
        while (*p && isspace(*p)) p++;
        if (*p++ != '#') return;
        while (*p && isspace(*p)) p++;
        if (!strncmp( p, "pragma", 6 )) parse_pragma_directive( source, p + 6 );
1174 1175 1176 1177 1178
        return;
    }
}


1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
static const struct
{
    const char *ext;
    void (*parse)( struct file *file, FILE *f );
} parse_functions[] =
{
    { ".c",   parse_c_file },
    { ".h",   parse_c_file },
    { ".inl", parse_c_file },
    { ".l",   parse_c_file },
    { ".m",   parse_c_file },
    { ".rh",  parse_c_file },
    { ".x",   parse_c_file },
    { ".y",   parse_c_file },
    { ".idl", parse_idl_file },
    { ".rc",  parse_rc_file },
    { ".in",  parse_in_file },
    { ".sfd", parse_sfd_file }
};

1199 1200 1201 1202 1203 1204 1205
/*******************************************************************
 *         load_file
 */
static struct file *load_file( const char *name )
{
    struct file *file;
    FILE *f;
1206
    unsigned int i, hash = hash_filename( name );
1207 1208 1209 1210 1211 1212 1213

    LIST_FOR_EACH_ENTRY( file, &files[hash], struct file, entry )
        if (!strcmp( name, file->name )) return file;

    if (!(f = fopen( name, "r" ))) return NULL;

    file = add_file( name );
1214
    list_add_tail( &files[hash], &file->entry );
1215 1216 1217
    input_file_name = file->name;
    input_line = 0;

1218 1219 1220 1221 1222 1223
    for (i = 0; i < sizeof(parse_functions) / sizeof(parse_functions[0]); i++)
    {
        if (!strendswith( name, parse_functions[i].ext )) continue;
        parse_functions[i].parse( file, f );
        break;
    }
1224 1225 1226 1227 1228 1229 1230 1231 1232

    fclose( f );
    input_file_name = NULL;

    return file;
}


/*******************************************************************
1233 1234 1235
 *         open_include_path_file
 *
 * Open a file from a directory on the include path.
1236
 */
1237 1238
static struct file *open_include_path_file( const struct makefile *make, const char *dir,
                                            const char *name, char **filename )
1239
{
1240 1241
    char *src_path = base_dir_path( make, concat_paths( dir, name ));
    struct file *ret = load_file( src_path );
1242

1243
    if (ret) *filename = src_dir_path( make, concat_paths( dir, name ));
1244 1245 1246 1247
    return ret;
}


1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
/*******************************************************************
 *         open_file_same_dir
 *
 * Open a file in the same directory as the parent.
 */
static struct file *open_file_same_dir( const struct incl_file *parent, const char *name, char **filename )
{
    char *src_path = replace_filename( parent->file->name, name );
    struct file *ret = load_file( src_path );

    if (ret) *filename = replace_filename( parent->filename, name );
    free( src_path );
    return ret;
}


1264 1265 1266 1267 1268
/*******************************************************************
 *         open_local_file
 *
 * 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 )
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
{
    char *src_path = root_dir_path( base_dir_path( make, path ));
    struct file *ret = load_file( src_path );

    /* if not found, try parent dir */
    if (!ret && make->parent_dir)
    {
        free( src_path );
        path = strmake( "%s/%s", make->parent_dir, path );
        src_path = root_dir_path( base_dir_path( make, path ));
        ret = load_file( src_path );
    }

    if (ret) *filename = src_dir_path( make, path );
    free( src_path );
    return ret;
}


/*******************************************************************
 *         open_global_file
 *
 * 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 )
1295 1296 1297 1298
{
    char *src_path = root_dir_path( path );
    struct file *ret = load_file( src_path );

1299
    if (ret) *filename = top_src_dir_path( make, path );
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
    free( src_path );
    return ret;
}


/*******************************************************************
 *         open_global_header
 *
 * 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 )
1311 1312 1313 1314 1315 1316 1317 1318
{
    return open_global_file( make, strmake( "include/%s", path ), filename );
}


/*******************************************************************
 *         open_src_file
 */
1319
static struct file *open_src_file( const struct makefile *make, struct incl_file *pFile )
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
{
    struct file *file = open_local_file( make, pFile->name, &pFile->filename );

    if (!file) fatal_perror( "open %s", pFile->name );
    return file;
}


/*******************************************************************
 *         open_include_file
 */
1331
static struct file *open_include_file( const struct makefile *make, struct incl_file *pFile )
1332 1333
{
    struct file *file = NULL;
1334
    char *filename;
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
    unsigned int i, len;

    errno = ENOENT;

    /* check for generated bison header */

    if (strendswith( pFile->name, ".tab.h" ) &&
        (file = open_local_file( make, replace_extension( pFile->name, ".tab.h", ".y" ), &filename )))
    {
        pFile->sourcename = filename;
        pFile->filename = obj_dir_path( make, pFile->name );
        return file;
    }

    /* check for corresponding idl file in source dir */

    if (strendswith( pFile->name, ".h" ) &&
        (file = open_local_file( make, replace_extension( pFile->name, ".h", ".idl" ), &filename )))
    {
        pFile->sourcename = filename;
        pFile->filename = obj_dir_path( make, pFile->name );
        return file;
    }

1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
    /* check for corresponding tlb file in source dir */

    if (strendswith( pFile->name, ".tlb" ) &&
        (file = open_local_file( make, replace_extension( pFile->name, ".tlb", ".idl" ), &filename )))
    {
        pFile->sourcename = filename;
        pFile->filename = obj_dir_path( make, pFile->name );
        return file;
    }

1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
    /* now try in source dir */
    if ((file = open_local_file( make, pFile->name, &pFile->filename ))) return file;

    /* check for corresponding idl file in global includes */

    if (strendswith( pFile->name, ".h" ) &&
        (file = open_global_header( make, replace_extension( pFile->name, ".h", ".idl" ), &filename )))
    {
        pFile->sourcename = filename;
        pFile->filename = top_obj_dir_path( make, strmake( "include/%s", pFile->name ));
        return file;
    }

    /* check for corresponding .in file in global includes (for config.h.in) */

    if (strendswith( pFile->name, ".h" ) &&
        (file = open_global_header( make, replace_extension( pFile->name, ".h", ".h.in" ), &filename )))
    {
        pFile->sourcename = filename;
        pFile->filename = top_obj_dir_path( make, strmake( "include/%s", pFile->name ));
        return file;
    }

    /* check for corresponding .x file in global includes */

    if (strendswith( pFile->name, "tmpl.h" ) &&
        (file = open_global_header( make, replace_extension( pFile->name, ".h", ".x" ), &filename )))
    {
        pFile->sourcename = filename;
        pFile->filename = top_obj_dir_path( make, strmake( "include/%s", pFile->name ));
        return file;
    }

1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
    /* check for corresponding .tlb file in global includes */

    if (strendswith( pFile->name, ".tlb" ) &&
        (file = open_global_header( make, replace_extension( pFile->name, ".tlb", ".idl" ), &filename )))
    {
        pFile->sourcename = filename;
        pFile->filename = top_obj_dir_path( make, strmake( "include/%s", pFile->name ));
        return file;
    }

1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
    /* check in global includes source dir */

    if ((file = open_global_header( make, pFile->name, &pFile->filename ))) return file;

    /* check in global msvcrt includes */
    if (make->use_msvcrt &&
        (file = open_global_header( make, strmake( "msvcrt/%s", pFile->name ), &pFile->filename )))
        return file;

    /* now search in include paths */
1422
    for (i = 0; i < make->include_paths.count; i++)
1423
    {
1424
        const char *dir = make->include_paths.str[i];
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439
        const char *prefix = make->top_src_dir ? make->top_src_dir : make->top_obj_dir;

        if (prefix)
        {
            len = strlen( prefix );
            if (!strncmp( dir, prefix, len ) && (!dir[len] || dir[len] == '/'))
            {
                while (dir[len] == '/') len++;
                file = open_global_file( make, concat_paths( dir + len, pFile->name ), &pFile->filename );
                if (file) return file;
            }
            if (make->top_src_dir) continue;  /* ignore paths that don't point to the top source dir */
        }
        if (*dir != '/')
        {
1440
            if ((file = open_include_path_file( make, dir, pFile->name, &pFile->filename )))
1441 1442 1443
                return file;
        }
    }
1444
    if (pFile->type == INCL_SYSTEM) return NULL;  /* ignore system files we cannot find */
1445 1446

    /* try in src file directory */
1447
    if ((file = open_file_same_dir( pFile->included_by, pFile->name, &pFile->filename ))) return file;
1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466

    fprintf( stderr, "%s:%d: error: ", pFile->included_by->file->name, pFile->included_line );
    perror( pFile->name );
    pFile = pFile->included_by;
    while (pFile && pFile->included_by)
    {
        const char *parent = pFile->included_by->sourcename;
        if (!parent) parent = pFile->included_by->file->name;
        fprintf( stderr, "%s:%d: note: %s was first included here\n",
                 parent, pFile->included_line, pFile->name );
        pFile = pFile->included_by;
    }
    exit(1);
}


/*******************************************************************
 *         add_all_includes
 */
1467
static void add_all_includes( struct makefile *make, struct incl_file *parent, struct file *file )
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479
{
    unsigned int i;

    parent->files_count = 0;
    parent->files_size = file->deps_count;
    parent->files = xmalloc( parent->files_size * sizeof(*parent->files) );
    for (i = 0; i < file->deps_count; i++)
    {
        switch (file->deps[i].type)
        {
        case INCL_NORMAL:
        case INCL_IMPORT:
1480 1481 1482 1483
            add_include( make, parent, file->deps[i].name, file->deps[i].line, INCL_NORMAL );
            break;
        case INCL_IMPORTLIB:
            add_include( make, parent, file->deps[i].name, file->deps[i].line, INCL_IMPORTLIB );
1484 1485
            break;
        case INCL_SYSTEM:
1486
            add_include( make, parent, file->deps[i].name, file->deps[i].line, INCL_SYSTEM );
1487 1488 1489 1490 1491 1492 1493 1494 1495
            break;
        case INCL_CPP_QUOTE:
        case INCL_CPP_QUOTE_SYSTEM:
            break;
        }
    }
}


1496 1497 1498
/*******************************************************************
 *         parse_file
 */
1499
static void parse_file( struct makefile *make, struct incl_file *source, int src )
1500
{
1501
    struct file *file = src ? open_src_file( make, source ) : open_include_file( make, source );
1502

1503
    if (!file) return;
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515

    source->file = file;
    source->files_count = 0;
    source->files_size = file->deps_count;
    source->files = xmalloc( source->files_size * sizeof(*source->files) );

    if (source->sourcename)
    {
        if (strendswith( source->sourcename, ".idl" ))
        {
            unsigned int i;

1516 1517
            if (strendswith( source->name, ".tlb" )) return;  /* typelibs don't include anything */

1518
            /* generated .h file always includes these */
1519 1520
            add_include( make, source, "rpc.h", 0, INCL_NORMAL );
            add_include( make, source, "rpcndr.h", 0, INCL_NORMAL );
1521 1522 1523 1524 1525 1526
            for (i = 0; i < file->deps_count; i++)
            {
                switch (file->deps[i].type)
                {
                case INCL_IMPORT:
                    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 1532
                    break;
                case INCL_CPP_QUOTE:
1533
                    add_include( make, source, file->deps[i].name, file->deps[i].line, INCL_NORMAL );
1534 1535
                    break;
                case INCL_CPP_QUOTE_SYSTEM:
1536
                    add_include( make, source, file->deps[i].name, file->deps[i].line, INCL_SYSTEM );
1537 1538 1539
                    break;
                case INCL_NORMAL:
                case INCL_SYSTEM:
1540
                case INCL_IMPORTLIB:
1541 1542 1543 1544 1545 1546 1547 1548 1549
                    break;
                }
            }
            return;
        }
        if (strendswith( source->sourcename, ".y" ))
            return;  /* generated .tab.h doesn't include anything */
    }

1550
    add_all_includes( make, source, file );
Alexandre Julliard's avatar
Alexandre Julliard committed
1551 1552 1553
}


1554 1555 1556 1557 1558
/*******************************************************************
 *         add_src_file
 *
 * Add a source file to the list.
 */
1559
static struct incl_file *add_src_file( struct makefile *make, const char *name )
1560
{
1561
    struct incl_file *file;
1562

1563
    if ((file = find_src_file( make, name ))) return file;  /* we already have it */
1564 1565 1566
    file = xmalloc( sizeof(*file) );
    memset( file, 0, sizeof(*file) );
    file->name = xstrdup(name);
1567
    list_add_tail( &make->sources, &file->entry );
1568
    parse_file( make, file, 1 );
1569
    return file;
1570
}
1571

1572

1573 1574 1575
/*******************************************************************
 *         open_input_makefile
 */
1576
static FILE *open_input_makefile( const struct makefile *make )
1577 1578 1579 1580
{
    FILE *ret;

    if (make->base_dir)
1581 1582 1583
        input_file_name = root_dir_path( base_dir_path( make, strmake( "%s.in", output_makefile_name )));
    else
        input_file_name = output_makefile_name;  /* always use output name for main Makefile */
1584 1585

    input_line = 0;
1586
    if (!(ret = fopen( input_file_name, "r" ))) fatal_perror( "open" );
1587 1588 1589 1590
    return ret;
}


1591 1592 1593
/*******************************************************************
 *         get_make_variable
 */
1594
static const char *get_make_variable( const struct makefile *make, const char *name )
1595
{
1596
    const char *ret;
1597

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 1602 1603 1604 1605 1606 1607
    return NULL;
}


/*******************************************************************
 *         get_expanded_make_variable
 */
1608
static char *get_expanded_make_variable( const struct makefile *make, const char *name )
1609
{
1610 1611
    const char *var;
    char *p, *end, *expand, *tmp;
1612

1613 1614
    var = get_make_variable( make, name );
    if (!var) return NULL;
1615

1616
    p = expand = xstrdup( var );
1617 1618 1619 1620 1621 1622 1623
    while ((p = strchr( p, '$' )))
    {
        if (p[1] == '(')
        {
            if (!(end = strchr( p + 2, ')' ))) fatal_error( "syntax error in '%s'\n", expand );
            *end++ = 0;
            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 1627 1628 1629
            /* switch to the new string */
            p = tmp + (p - expand);
            free( expand );
            expand = tmp;
1630
        }
1631 1632 1633 1634 1635
        else if (p[1] == '{')  /* don't expand ${} variables */
        {
            if (!(end = strchr( p + 2, '}' ))) fatal_error( "syntax error in '%s'\n", expand );
            p = end + 1;
        }
1636 1637
        else if (p[1] == '$')
        {
1638
            p += 2;
1639 1640 1641
        }
        else fatal_error( "syntax error in '%s'\n", expand );
    }
1642 1643 1644 1645 1646 1647 1648

    /* consider empty variables undefined */
    p = expand;
    while (*p && isspace(*p)) p++;
    if (*p) return expand;
    free( expand );
    return NULL;
1649 1650 1651 1652 1653 1654
}


/*******************************************************************
 *         get_expanded_make_var_array
 */
1655
static struct strarray get_expanded_make_var_array( const struct makefile *make, const char *name )
1656
{
1657
    struct strarray ret = empty_strarray;
1658 1659
    char *value, *token;

1660
    if ((value = get_expanded_make_variable( make, name )))
1661 1662 1663 1664 1665 1666
        for (token = strtok( value, " \t" ); token; token = strtok( NULL, " \t" ))
            strarray_add( &ret, token );
    return ret;
}


1667
/*******************************************************************
1668
 *         get_expanded_file_local_var
1669
 */
1670 1671
static struct strarray get_expanded_file_local_var( const struct makefile *make, const char *file,
                                                    const char *name )
1672
{
1673
    char *p, *var = strmake( "%s_%s", file, name );
1674 1675

    for (p = var; *p; p++) if (!isalnum( *p )) *p = '_';
1676
    return get_expanded_make_var_array( make, var );
1677 1678 1679
}


1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698
/*******************************************************************
 *         set_make_variable
 */
static int set_make_variable( struct strarray *array, const char *assignment )
{
    char *p, *name;

    p = name = xstrdup( assignment );
    while (isalnum(*p) || *p == '_') p++;
    if (name == p) return 0;  /* not a variable */
    if (isspace(*p))
    {
        *p++ = 0;
        while (isspace(*p)) p++;
    }
    if (*p != '=') return 0;  /* not an assignment */
    *p++ = 0;
    while (isspace(*p)) p++;

1699
    strarray_set_value( array, name, p );
1700 1701 1702 1703
    return 1;
}


1704 1705 1706
/*******************************************************************
 *         parse_makefile
 */
1707
static struct makefile *parse_makefile( const char *path )
1708 1709 1710
{
    char *buffer;
    FILE *file;
1711
    struct makefile *make = xmalloc( sizeof(*make) );
1712

1713 1714 1715 1716 1717 1718 1719 1720
    memset( make, 0, sizeof(*make) );
    if (path)
    {
        make->top_obj_dir = get_relative_path( path, "" );
        make->base_dir = path;
        if (!strcmp( make->base_dir, "." )) make->base_dir = NULL;
    }

1721
    file = open_input_makefile( make );
1722 1723
    while ((buffer = get_line( file )))
    {
1724
        if (!strncmp( buffer, separator, strlen(separator) )) break;
1725 1726 1727
        if (*buffer == '\t') continue;  /* command */
        while (isspace( *buffer )) buffer++;
        if (*buffer == '#') continue;  /* comment */
1728
        set_make_variable( &make->vars, buffer );
1729 1730 1731
    }
    fclose( file );
    input_file_name = NULL;
1732
    return make;
1733 1734 1735
}


1736 1737 1738
/*******************************************************************
 *         add_generated_sources
 */
1739
static void add_generated_sources( struct makefile *make )
1740 1741 1742
{
    struct incl_file *source, *next, *file;

1743
    LIST_FOR_EACH_ENTRY_SAFE( source, next, &make->sources, struct incl_file, entry )
1744
    {
1745
        if (source->file->flags & FLAG_IDL_CLIENT)
1746
        {
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 );
1750
        }
1751
        if (source->file->flags & FLAG_IDL_SERVER)
1752
        {
1753
            file = add_generated_source( make, replace_extension( source->name, ".idl", "_s.c" ), NULL );
1754 1755
            add_dependency( file->file, "wine/exception.h", INCL_NORMAL );
            add_dependency( file->file, replace_extension( source->name, ".idl", ".h" ), INCL_NORMAL );
1756
            add_all_includes( make, file, file->file );
1757
        }
1758
        if (source->file->flags & FLAG_IDL_IDENT)
1759
        {
1760
            file = add_generated_source( make, replace_extension( source->name, ".idl", "_i.c" ), NULL );
1761 1762 1763
            add_dependency( file->file, "rpc.h", INCL_NORMAL );
            add_dependency( file->file, "rpcndr.h", INCL_NORMAL );
            add_dependency( file->file, "guiddef.h", INCL_NORMAL );
1764
            add_all_includes( make, file, file->file );
1765
        }
1766
        if (source->file->flags & FLAG_IDL_PROXY)
1767
        {
1768
            file = add_generated_source( make, "dlldata.o", "dlldata.c" );
1769 1770
            add_dependency( file->file, "objbase.h", INCL_NORMAL );
            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 1774 1775 1776
            add_dependency( file->file, "objbase.h", INCL_NORMAL );
            add_dependency( file->file, "rpcproxy.h", INCL_NORMAL );
            add_dependency( file->file, "wine/exception.h", INCL_NORMAL );
            add_dependency( file->file, replace_extension( source->name, ".idl", ".h" ), INCL_NORMAL );
1777
            add_all_includes( make, file, file->file );
1778
        }
1779 1780 1781 1782
        if (source->file->flags & FLAG_IDL_TYPELIB)
        {
            add_generated_source( make, replace_extension( source->name, ".idl", ".tlb" ), NULL );
        }
1783
        if (source->file->flags & FLAG_IDL_REGTYPELIB)
1784
        {
1785
            add_generated_source( make, replace_extension( source->name, ".idl", "_t.res" ), NULL );
1786
        }
1787
        if (source->file->flags & FLAG_IDL_REGISTER)
1788
        {
1789
            add_generated_source( make, replace_extension( source->name, ".idl", "_r.res" ), NULL );
1790
        }
1791 1792 1793 1794
        if (source->file->flags & FLAG_IDL_HEADER)
        {
            add_generated_source( make, replace_extension( source->name, ".idl", ".h" ), NULL );
        }
1795 1796 1797 1798
        if (!source->file->flags && strendswith( source->name, ".idl" ))
        {
            add_generated_source( make, replace_extension( source->name, ".idl", ".h" ), NULL );
        }
1799 1800 1801 1802
        if (strendswith( source->name, ".x" ))
        {
            add_generated_source( make, replace_extension( source->name, ".x", ".h" ), NULL );
        }
1803 1804
        if (strendswith( source->name, ".y" ))
        {
1805
            file = add_generated_source( make, replace_extension( source->name, ".y", ".tab.c" ), NULL );
1806 1807 1808 1809 1810 1811
            /* steal the includes list from the source file */
            file->files_count = source->files_count;
            file->files_size = source->files_size;
            file->files = source->files;
            source->files_count = source->files_size = 0;
            source->files = NULL;
1812 1813 1814
        }
        if (strendswith( source->name, ".l" ))
        {
1815
            file = add_generated_source( make, replace_extension( source->name, ".l", ".yy.c" ), NULL );
1816 1817 1818 1819 1820 1821
            /* steal the includes list from the source file */
            file->files_count = source->files_count;
            file->files_size = source->files_size;
            file->files = source->files;
            source->files_count = source->files_size = 0;
            source->files = NULL;
1822
        }
1823 1824 1825
        if (source->file->flags & FLAG_C_IMPLIB)
        {
            if (!make->staticimplib && make->importlib && *dll_ext)
1826
                make->staticimplib = strmake( "lib%s.a", make->importlib );
1827
        }
1828 1829 1830 1831 1832
        if (strendswith( source->name, ".po" ))
        {
            if (!make->disabled)
                strarray_add_uniq( &linguas, replace_extension( source->name, ".po", "" ));
        }
1833
    }
1834
    if (make->testdll)
1835
    {
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 );
1839 1840 1841 1842
    }
}


1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
/*******************************************************************
 *         create_dir
 */
static void create_dir( const char *dir )
{
    char *p, *path;

    p = path = xstrdup( dir );
    while ((p = strchr( p, '/' )))
    {
        *p = 0;
        if (mkdir( path, 0755 ) == -1 && errno != EEXIST) fatal_perror( "mkdir %s", path );
        *p++ = '/';
        while (*p == '/') p++;
    }
    if (mkdir( path, 0755 ) == -1 && errno != EEXIST) fatal_perror( "mkdir %s", path );
    free( path );
}


1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
/*******************************************************************
 *         create_file_directories
 *
 * Create the base directories of all the files.
 */
static void create_file_directories( const struct makefile *make, struct strarray files )
{
    struct strarray subdirs = empty_strarray;
    unsigned int i;
    char *dir;

    for (i = 0; i < files.count; i++)
    {
        if (!strchr( files.str[i], '/' )) continue;
        dir = base_dir_path( make, files.str[i] );
        *strrchr( dir, '/' ) = 0;
        strarray_add_uniq( &subdirs, dir );
    }

    for (i = 0; i < subdirs.count; i++) create_dir( subdirs.str[i] );
}


1886 1887 1888
/*******************************************************************
 *         output_filenames_obj_dir
 */
1889
static void output_filenames_obj_dir( const struct makefile *make, struct strarray array )
1890 1891 1892
{
    unsigned int i;

1893
    for (i = 0; i < array.count; i++) output_filename( obj_dir_path( make, array.str[i] ));
1894 1895 1896
}


Alexandre Julliard's avatar
Alexandre Julliard committed
1897
/*******************************************************************
1898
 *         get_dependencies
Alexandre Julliard's avatar
Alexandre Julliard committed
1899
 */
1900
static void get_dependencies( struct strarray *deps, struct incl_file *file, struct incl_file *source )
Alexandre Julliard's avatar
Alexandre Julliard committed
1901
{
1902 1903 1904
    unsigned int i;

    if (!file->filename) return;
Alexandre Julliard's avatar
Alexandre Julliard committed
1905

1906 1907 1908 1909 1910 1911 1912 1913 1914 1915
    if (file != source)
    {
        if (file->owner == source) return;  /* already processed */
        if (file->type == INCL_IMPORTLIB &&
            !(source->file->flags & (FLAG_IDL_TYPELIB | FLAG_IDL_REGTYPELIB)))
            return;  /* library is imported only when building a typelib */
        file->owner = source;
        strarray_add( deps, file->filename );
    }
    for (i = 0; i < file->files_count; i++) get_dependencies( deps, file->files[i], source );
Alexandre Julliard's avatar
Alexandre Julliard committed
1916 1917 1918
}


1919 1920 1921 1922 1923 1924 1925 1926 1927
/*******************************************************************
 *         get_local_dependencies
 *
 * Get the local dependencies of a given target.
 */
static struct strarray get_local_dependencies( const struct makefile *make, const char *name,
                                               struct strarray targets )
{
    unsigned int i;
1928
    struct strarray deps = get_expanded_file_local_var( make, name, "DEPS" );
1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940

    for (i = 0; i < deps.count; i++)
    {
        if (strarray_exists( &targets, deps.str[i] ))
            deps.str[i] = obj_dir_path( make, deps.str[i] );
        else
            deps.str[i] = src_dir_path( make, deps.str[i] );
    }
    return deps;
}


1941
/*******************************************************************
1942
 *         get_static_lib
1943
 *
1944
 * Check if makefile builds the named static library and return the full lib path.
1945
 */
1946
static const char *get_static_lib( const struct makefile *make, const char *name )
1947
{
1948 1949 1950 1951 1952
    if (!make->staticlib) return NULL;
    if (strncmp( make->staticlib, "lib", 3 )) return NULL;
    if (strncmp( make->staticlib + 3, name, strlen(name) )) return NULL;
    if (strcmp( make->staticlib + 3 + strlen(name), ".a" )) return NULL;
    return base_dir_path( make, make->staticlib );
1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970
}


/*******************************************************************
 *         add_default_libraries
 */
static struct strarray add_default_libraries( const struct makefile *make, struct strarray *deps )
{
    struct strarray ret = empty_strarray;
    struct strarray all_libs = empty_strarray;
    unsigned int i, j;

    strarray_add( &all_libs, "-lwine_port" );
    strarray_addall( &all_libs, get_expanded_make_var_array( make, "EXTRALIBS" ));
    strarray_addall( &all_libs, libs );

    for (i = 0; i < all_libs.count; i++)
    {
1971 1972
        const char *lib = NULL;

1973 1974 1975 1976 1977 1978 1979 1980
        if (!strncmp( all_libs.str[i], "-l", 2 ))
        {
            const char *name = all_libs.str[i] + 2;

            for (j = 0; j < top_makefile->subdirs.count; j++)
            {
                const struct makefile *submake = top_makefile->submakes[j];

1981
                if ((lib = get_static_lib( submake, name ))) break;
1982 1983
            }
        }
1984 1985 1986 1987 1988 1989 1990 1991

        if (lib)
        {
            lib = top_obj_dir_path( make, lib );
            strarray_add( deps, lib );
            strarray_add( &ret, lib );
        }
        else strarray_add( &ret, all_libs.str[i] );
1992 1993 1994 1995 1996
    }
    return ret;
}


1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008
/*******************************************************************
 *         add_import_libs
 */
static struct strarray add_import_libs( const struct makefile *make, struct strarray *deps,
                                        struct strarray imports, int cross )
{
    struct strarray ret = empty_strarray;
    unsigned int i, j;

    for (i = 0; i < imports.count; i++)
    {
        const char *name = imports.str[i];
2009
        const char *lib = NULL;
2010 2011 2012 2013 2014 2015 2016

        for (j = 0; j < top_makefile->subdirs.count; j++)
        {
            const struct makefile *submake = top_makefile->submakes[j];

            if (submake->importlib && !strcmp( submake->importlib, name ))
            {
2017 2018
                if (cross || !*dll_ext || submake->staticimplib)
                    lib = base_dir_path( submake, strmake( "lib%s.a", name ));
2019
                else
2020 2021
                    strarray_add( deps, top_obj_dir_path( make,
                                            strmake( "%s/lib%s.def", submake->base_dir, name )));
2022 2023 2024
                break;
            }

2025 2026
            if ((lib = get_static_lib( submake, name ))) break;
        }
2027

2028 2029
        if (lib)
        {
2030
            if (cross) lib = replace_extension( lib, ".a", ".cross.a" );
2031 2032 2033
            lib = top_obj_dir_path( make, lib );
            strarray_add( deps, lib );
            strarray_add( &ret, lib );
2034
        }
2035
        else strarray_add( &ret, strmake( "-l%s", name ));
2036 2037 2038 2039 2040
    }
    return ret;
}


2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057
/*******************************************************************
 *         get_default_imports
 */
static struct strarray get_default_imports( const struct makefile *make )
{
    struct strarray ret = empty_strarray;

    if (strarray_exists( &make->extradllflags, "-nodefaultlibs" )) return ret;
    if (strarray_exists( &make->appmode, "-mno-cygwin" )) strarray_add( &ret, "msvcrt" );
    if (make->is_win16) strarray_add( &ret, "kernel" );
    strarray_add( &ret, "kernel32" );
    strarray_add( &ret, "ntdll" );
    strarray_add( &ret, "winecrt0" );
    return ret;
}


2058 2059 2060
/*******************************************************************
 *         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 )
2063 2064 2065
{
    if (strarray_exists( &make->install_lib, target ))
    {
2066 2067
        strarray_add( &install_rules[INSTALL_LIB], file );
        strarray_add( &install_rules[INSTALL_LIB], dest );
2068 2069 2070
    }
    else if (strarray_exists( &make->install_dev, target ))
    {
2071 2072
        strarray_add( &install_rules[INSTALL_DEV], file );
        strarray_add( &install_rules[INSTALL_DEV], dest );
2073 2074 2075 2076
    }
}


2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089
/*******************************************************************
 *         get_include_install_path
 *
 * Determine the installation path for a given include file.
 */
static const char *get_include_install_path( const char *name )
{
    if (!strncmp( name, "wine/", 5 )) return name + 5;
    if (!strncmp( name, "msvcrt/", 7 )) return name;
    return strmake( "windows/%s", name );
}


2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125
/*******************************************************************
 *         get_shared_library_name
 *
 * Determine possible names for a shared library with a version number.
 */
static struct strarray get_shared_lib_names( const char *libname )
{
    struct strarray ret = empty_strarray;
    const char *ext, *p;
    char *name, *first, *second;
    size_t len = 0;

    strarray_add( &ret, libname );

    for (p = libname; (p = strchr( p, '.' )); p++)
        if ((len = strspn( p + 1, "0123456789." ))) break;

    if (!len) return ret;
    ext = p + 1 + len;
    if (*ext && ext[-1] == '.') ext--;

    /* keep only the first group of digits */
    name = xstrdup( libname );
    first = name + (p - libname);
    if ((second = strchr( first + 1, '.' )))
    {
        strcpy( second, ext );
        strarray_add( &ret, xstrdup( name ));
    }
    /* now remove all digits */
    strcpy( first, ext );
    strarray_add( &ret, name );
    return ret;
}


2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151
/*******************************************************************
 *         output_symlink_rule
 *
 * Output a rule to create a symlink.
 */
static void output_symlink_rule( const char *src_name, const char *link_name )
{
    const char *name;

    output( "\trm -f %s && ", link_name );

    /* dest path with a directory needs special handling if ln -s isn't supported */
    if (strcmp( ln_s, "ln -s" ) && ((name = strrchr( link_name, '/' ))))
    {
        char *dir = xstrdup( link_name );
        dir[name - link_name] = 0;
        output( "cd %s && %s %s %s\n", *dir ? dir : "/", ln_s, src_name, name + 1 );
        free( dir );
    }
    else
    {
        output( "%s %s %s\n", ln_s, src_name, link_name );
    }
}


2152 2153 2154 2155 2156 2157
/*******************************************************************
 *         output_install_rules
 *
 * Rules are stored as a (file,dest) pair of values.
 * The first char of dest indicates the type of install.
 */
2158 2159
static struct strarray output_install_rules( const struct makefile *make, struct strarray files,
                                             const char *target, struct strarray *phony_targets )
2160 2161 2162
{
    unsigned int i;
    char *install_sh;
2163
    struct strarray uninstall = empty_strarray;
2164 2165
    struct strarray targets = empty_strarray;

2166
    if (!files.count) return uninstall;
2167 2168

    for (i = 0; i < files.count; i += 2)
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
    {
        const char *file = files.str[i];
        switch (*files.str[i + 1])
        {
        case 'd':  /* data file */
        case 'p':  /* program file */
        case 's':  /* script */
            strarray_add_uniq( &targets, obj_dir_path( make, file ));
            break;
        case 't':  /* script in tools dir */
            strarray_add_uniq( &targets, tools_dir_path( make, file ));
            break;
        }
    }
2183 2184

    output( "install %s::", target );
2185
    output_filenames( targets );
2186 2187
    output( "\n" );

2188
    install_sh = top_src_dir_path( make, "tools/install-sh" );
2189 2190 2191
    for (i = 0; i < files.count; i += 2)
    {
        const char *file = files.str[i];
2192
        const char *dest = strmake( "$(DESTDIR)%s", files.str[i + 1] + 1 );
2193

2194
        switch (*files.str[i + 1])
2195 2196
        {
        case 'd':  /* data file */
2197 2198
            output( "\t%s -m 644 $(INSTALL_DATA_FLAGS) %s %s\n",
                    install_sh, obj_dir_path( make, file ), dest );
2199 2200
            break;
        case 'D':  /* data file in source dir */
2201 2202
            output( "\t%s -m 644 $(INSTALL_DATA_FLAGS) %s %s\n",
                    install_sh, src_dir_path( make, file ), dest );
2203 2204
            break;
        case 'p':  /* program file */
2205 2206
            output( "\tSTRIPPROG=\"$(STRIP)\" %s $(INSTALL_PROGRAM_FLAGS) %s %s\n",
                    install_sh, obj_dir_path( make, file ), dest );
2207 2208
            break;
        case 's':  /* script */
2209 2210
            output( "\t%s $(INSTALL_SCRIPT_FLAGS) %s %s\n",
                    install_sh, obj_dir_path( make, file ), dest );
2211 2212
            break;
        case 'S':  /* script in source dir */
2213 2214 2215 2216 2217 2218
            output( "\t%s $(INSTALL_SCRIPT_FLAGS) %s %s\n",
                    install_sh, src_dir_path( make, file ), dest );
            break;
        case 't':  /* script in tools dir */
            output( "\t%s $(INSTALL_SCRIPT_FLAGS) %s %s\n",
                    install_sh, tools_dir_path( make, file ), dest );
2219
            break;
2220
        case 'y':  /* symlink */
2221
            output_symlink_rule( file, dest );
2222
            break;
2223 2224 2225
        default:
            assert(0);
        }
2226
        strarray_add( &uninstall, dest );
2227 2228
    }

2229 2230 2231
    strarray_add_uniq( phony_targets, "install" );
    strarray_add_uniq( phony_targets, target );
    return uninstall;
2232 2233 2234
}


2235 2236 2237 2238 2239 2240 2241
/*******************************************************************
 *         output_importlib_symlinks
 */
static struct strarray output_importlib_symlinks( const struct makefile *parent,
                                                  const struct makefile *make )
{
    struct strarray ret = empty_strarray;
2242
    const char *lib, *dst;
2243 2244 2245

    if (!make->module) return ret;
    if (!make->importlib) return ret;
2246
    if (make->is_win16 && make->disabled) return ret;
2247 2248 2249 2250 2251 2252 2253 2254
    if (strncmp( make->base_dir, "dlls/", 5 )) return ret;
    if (!strcmp( make->module, make->importlib )) return ret;
    if (!strchr( make->importlib, '.' ) &&
        !strncmp( make->module, make->importlib, strlen( make->importlib )) &&
        !strcmp( make->module + strlen( make->importlib ), ".dll" ))
        return ret;

    lib = strmake( "lib%s.%s", make->importlib, *dll_ext ? "def" : "a" );
2255 2256 2257 2258
    dst = concat_paths( obj_dir_path( parent, "dlls" ), lib );
    output( "%s: %s\n", dst, base_dir_path( make, lib ));
    output_symlink_rule( concat_paths( make->base_dir + strlen("dlls/"), lib ), dst );
    strarray_add( &ret, dst );
2259 2260 2261 2262

    if (crosstarget && !make->is_win16)
    {
        lib = strmake( "lib%s.cross.a", make->importlib );
2263 2264 2265 2266
        dst = concat_paths( obj_dir_path( parent, "dlls" ), lib );
        output( "%s: %s\n", dst, base_dir_path( make, lib ));
        output_symlink_rule( concat_paths( make->base_dir + strlen("dlls/"), lib ), dst );
        strarray_add( &ret, dst );
2267 2268 2269 2270 2271
    }
    return ret;
}


2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
/*******************************************************************
 *         output_po_files
 */
static void output_po_files( const struct makefile *make )
{
    const char *po_dir = src_dir_path( make, "po" );
    struct strarray pot_files = empty_strarray;
    struct incl_file *source;
    unsigned int i;

    for (i = 0; i < make->subdirs.count; i++)
    {
        struct makefile *submake = make->submakes[i];

        LIST_FOR_EACH_ENTRY( source, &submake->sources, struct incl_file, entry )
        {
            if (strendswith( source->name, ".rc" ) && (source->file->flags & FLAG_RC_PO))
            {
                char *pot_file = replace_extension( source->name, ".rc", ".pot" );
                char *pot_path = base_dir_path( submake, pot_file );
                output( "%s: tools/wrc include dummy\n", pot_path );
                output( "\t@cd %s && $(MAKE) %s\n", base_dir_path( submake, "" ), pot_file );
                strarray_add( &pot_files, pot_path );
            }
            else if (strendswith( source->name, ".mc" ))
            {
                char *pot_file = replace_extension( source->name, ".mc", ".pot" );
                char *pot_path = base_dir_path( submake, pot_file );
                output( "%s: tools/wmc include dummy\n", pot_path );
                output( "\t@cd %s && $(MAKE) %s\n", base_dir_path( submake, "" ), pot_file );
                strarray_add( &pot_files, pot_path );
            }
        }
    }
    if (linguas.count)
    {
        for (i = 0; i < linguas.count; i++)
            output_filename( strmake( "%s/%s.po", po_dir, linguas.str[i] ));
        output( ": %s/wine.pot\n", po_dir );
        output( "\tmsgmerge --previous -q $@ %s/wine.pot | msgattrib --no-obsolete -o $@.new && mv $@.new $@\n",
                po_dir );
2313 2314 2315 2316
        output( "po:" );
        for (i = 0; i < linguas.count; i++)
            output_filename( strmake( "%s/%s.po", po_dir, linguas.str[i] ));
        output( "\n" );
2317 2318 2319 2320 2321 2322 2323 2324 2325 2326
    }
    output( "%s/wine.pot:", po_dir );
    output_filenames( pot_files );
    output( "\n" );
    output( "\tmsgcat -o $@" );
    output_filenames( pot_files );
    output( "\n" );
}


Alexandre Julliard's avatar
Alexandre Julliard committed
2327
/*******************************************************************
2328
 *         output_sources
Alexandre Julliard's avatar
Alexandre Julliard committed
2329
 */
2330
static struct strarray output_sources( const struct makefile *make )
Alexandre Julliard's avatar
Alexandre Julliard committed
2331
{
2332
    struct incl_file *source;
2333
    unsigned int i, j;
2334 2335 2336
    struct strarray object_files = empty_strarray;
    struct strarray crossobj_files = empty_strarray;
    struct strarray res_files = empty_strarray;
2337
    struct strarray clean_files = empty_strarray;
2338
    struct strarray uninstall_files = empty_strarray;
2339
    struct strarray mo_files = empty_strarray;
2340
    struct strarray ok_files = empty_strarray;
2341
    struct strarray in_files = empty_strarray;
2342
    struct strarray dlldata_files = empty_strarray;
2343
    struct strarray c2man_files = empty_strarray;
2344
    struct strarray implib_objs = empty_strarray;
2345
    struct strarray includes = empty_strarray;
2346
    struct strarray phony_targets = empty_strarray;
2347
    struct strarray all_targets = empty_strarray;
2348
    struct strarray install_rules[NB_INSTALL_RULES];
2349 2350
    char *ldrpath_local   = get_expanded_make_variable( make, "LDRPATH_LOCAL" );
    char *ldrpath_install = get_expanded_make_variable( make, "LDRPATH_INSTALL" );
2351

2352 2353
    for (i = 0; i < NB_INSTALL_RULES; i++) install_rules[i] = empty_strarray;

2354
    for (i = 0; i < linguas.count; i++)
2355
        strarray_add( &mo_files, strmake( "%s/%s.mo", top_obj_dir_path( make, "po" ), linguas.str[i] ));
2356

2357
    strarray_add( &phony_targets, "all" );
2358
    strarray_add( &includes, strmake( "-I%s", obj_dir_path( make, "" )));
2359
    if (make->src_dir) strarray_add( &includes, strmake( "-I%s", make->src_dir ));
2360
    if (make->parent_dir) strarray_add( &includes, strmake( "-I%s", src_dir_path( make, make->parent_dir )));
2361
    strarray_add( &includes, strmake( "-I%s", top_obj_dir_path( make, "include" )));
2362 2363 2364 2365
    if (make->top_src_dir)
        strarray_add( &includes, strmake( "-I%s", top_src_dir_path( make, "include" )));
    if (make->use_msvcrt)
        strarray_add( &includes, strmake( "-I%s", top_src_dir_path( make, "include/msvcrt" )));
2366 2367
    for (i = 0; i < make->include_paths.count; i++)
        strarray_add( &includes, strmake( "-I%s", obj_dir_path( make, make->include_paths.str[i] )));
2368

2369
    LIST_FOR_EACH_ENTRY( source, &make->sources, struct incl_file, entry )
Alexandre Julliard's avatar
Alexandre Julliard committed
2370
    {
2371
        struct strarray dependencies = empty_strarray;
2372
        struct strarray extradefs;
2373 2374 2375 2376
        char *obj = xstrdup( source->name );
        char *ext = get_extension( obj );

        if (!ext) fatal_error( "unsupported file type %s\n", source->name );
2377
        *ext++ = 0;
2378

2379
        extradefs = get_expanded_file_local_var( make, obj, "EXTRADEFS" );
2380
        get_dependencies( &dependencies, source, source );
2381

2382
        if (!strcmp( ext, "y" ))  /* yacc file */
Alexandre Julliard's avatar
Alexandre Julliard committed
2383
        {
2384 2385
            /* add source file dependency for parallel makes */
            char *header = strmake( "%s.tab.h", obj );
2386

2387
            if (find_include_file( make, header ))
2388
            {
2389
                output( "%s: %s\n", obj_dir_path( make, header ), source->filename );
2390
                output( "\t$(BISON) -p %s_ -o %s.tab.c -d %s\n",
2391 2392 2393
                        obj, obj_dir_path( make, obj ), source->filename );
                output( "%s.tab.c: %s %s\n", obj_dir_path( make, obj ),
                        source->filename, obj_dir_path( make, header ));
2394
                strarray_add( &clean_files, header );
2395
            }
2396
            else output( "%s.tab.c: %s\n", obj, source->filename );
2397

2398
            output( "\t$(BISON) -p %s_ -o $@ %s\n", obj, source->filename );
Alexandre Julliard's avatar
Alexandre Julliard committed
2399
        }
2400 2401
        else if (!strcmp( ext, "x" ))  /* template file */
        {
2402 2403 2404 2405
            output( "%s.h: %s%s %s\n", obj_dir_path( make, obj ),
                    tools_dir_path( make, "make_xftmpl" ), tools_ext, source->filename );
            output( "\t%s%s -H -o $@ %s\n",
                    tools_dir_path( make, "make_xftmpl" ), tools_ext, source->filename );
2406 2407
            if (source->file->flags & FLAG_INSTALL)
            {
2408 2409
                strarray_add( &install_rules[INSTALL_DEV], source->name );
                strarray_add( &install_rules[INSTALL_DEV],
2410
                              strmake( "D$(includedir)/%s", get_include_install_path( source->name ) ));
2411 2412
                strarray_add( &install_rules[INSTALL_DEV], strmake( "%s.h", obj ));
                strarray_add( &install_rules[INSTALL_DEV],
2413 2414
                              strmake( "d$(includedir)/%s.h", get_include_install_path( obj ) ));
            }
2415
        }
2416
        else if (!strcmp( ext, "l" ))  /* lex file */
Alexandre Julliard's avatar
Alexandre Julliard committed
2417
        {
2418
            output( "%s.yy.c: %s\n", obj_dir_path( make, obj ), source->filename );
2419
            output( "\t$(FLEX) -o$@ %s\n", source->filename );
Alexandre Julliard's avatar
Alexandre Julliard committed
2420
        }
2421
        else if (!strcmp( ext, "rc" ))  /* resource file */
Alexandre Julliard's avatar
Alexandre Julliard committed
2422
        {
2423
            strarray_add( &res_files, strmake( "%s.res", obj ));
2424
            output( "%s.res: %s\n", obj_dir_path( make, obj ), source->filename );
2425
            output( "\t%s -o $@", tools_path( make, "wrc" ) );
2426
            if (make->is_win16) output_filename( "-m16" );
2427
            else output_filenames( target_flags );
2428 2429
            output_filename( "--nostdinc" );
            output_filenames( includes );
2430
            output_filenames( make->define_args );
2431
            output_filenames( extradefs );
2432
            if (mo_files.count && (source->file->flags & FLAG_RC_PO))
2433
            {
2434
                output_filename( strmake( "--po-dir=%s", top_obj_dir_path( make, "po" )));
2435
                output_filename( source->filename );
2436
                output( "\n" );
2437
                output( "%s.res:", obj_dir_path( make, obj ));
2438 2439
                output_filenames( mo_files );
                output( "\n" );
2440
            }
2441 2442 2443 2444 2445
            else
            {
                output_filename( source->filename );
                output( "\n" );
            }
2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460
            if (source->file->flags & FLAG_RC_PO)
            {
                strarray_add( &clean_files, strmake( "%s.pot", obj ));
                output( "%s.pot: %s\n", obj_dir_path( make, obj ), source->filename );
                output( "\t%s -O pot -o $@", tools_path( make, "wrc" ) );
                if (make->is_win16) output_filename( "-m16" );
                else output_filenames( target_flags );
                output_filename( "--nostdinc" );
                output_filenames( includes );
                output_filenames( make->define_args );
                output_filenames( extradefs );
                output_filename( source->filename );
                output( "\n" );
                output( "%s.pot ", obj_dir_path( make, obj ));
            }
2461
            output( "%s.res:", obj_dir_path( make, obj ));
2462
            output_filename( tools_path( make, "wrc" ));
2463 2464
            output_filenames( dependencies );
            output( "\n" );
2465
        }
2466
        else if (!strcmp( ext, "mc" ))  /* message file */
2467
        {
2468
            strarray_add( &res_files, strmake( "%s.res", obj ));
2469 2470
            strarray_add( &clean_files, strmake( "%s.pot", obj ));
            output( "%s.res: %s\n", obj_dir_path( make, obj ), source->filename );
2471
            output( "\t%s -U -O res -o $@ %s", tools_path( make, "wmc" ), source->filename );
2472 2473
            if (mo_files.count)
            {
2474
                output_filename( strmake( "--po-dir=%s", top_obj_dir_path( make, "po" )));
2475
                output( "\n" );
2476
                output( "%s.res:", obj_dir_path( make, obj ));
2477 2478
                output_filenames( mo_files );
            }
2479 2480 2481 2482 2483 2484
            output( "\n" );
            output( "%s.pot: %s\n", obj_dir_path( make, obj ), source->filename );
            output( "\t%s -O pot -o $@ %s", tools_path( make, "wmc" ), source->filename );
            output( "\n" );
            output( "%s.pot %s.res:", obj_dir_path( make, obj ), obj_dir_path( make, obj ));
            output_filename( tools_path( make, "wmc" ));
2485 2486
            output_filenames( dependencies );
            output( "\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
2487
        }
2488 2489
        else if (!strcmp( ext, "idl" ))  /* IDL file */
        {
2490 2491
            struct strarray targets = empty_strarray;
            char *dest;
2492

2493 2494
            if (!source->file->flags) source->file->flags |= FLAG_IDL_HEADER | FLAG_INSTALL;
            if (find_include_file( make, strmake( "%s.h", obj ))) source->file->flags |= FLAG_IDL_HEADER;
2495

2496
            for (i = 0; i < sizeof(idl_outputs) / sizeof(idl_outputs[0]); i++)
2497
            {
2498
                if (!(source->file->flags & idl_outputs[i].flag)) continue;
2499
                dest = strmake( "%s%s", obj, idl_outputs[i].ext );
2500
                if (!find_src_file( make, dest )) strarray_add( &clean_files, dest );
2501
                strarray_add( &targets, dest );
2502
            }
2503
            if (source->file->flags & FLAG_IDL_PROXY) strarray_add( &dlldata_files, source->name );
2504 2505
            if (source->file->flags & FLAG_INSTALL)
            {
2506 2507
                strarray_add( &install_rules[INSTALL_DEV], xstrdup( source->name ));
                strarray_add( &install_rules[INSTALL_DEV],
2508 2509 2510
                              strmake( "D$(includedir)/%s.idl", get_include_install_path( obj ) ));
                if (source->file->flags & FLAG_IDL_HEADER)
                {
2511 2512
                    strarray_add( &install_rules[INSTALL_DEV], strmake( "%s.h", obj ));
                    strarray_add( &install_rules[INSTALL_DEV],
2513 2514 2515 2516
                                  strmake( "d$(includedir)/%s.h", get_include_install_path( obj ) ));
                }
            }
            if (!targets.count) continue;
2517 2518
            output_filenames_obj_dir( make, targets );
            output( ": %s\n", tools_path( make, "widl" ));
2519
            output( "\t%s -o $@", tools_path( make, "widl" ) );
2520
            output_filenames( target_flags );
2521
            output_filenames( includes );
2522
            output_filenames( make->define_args );
2523
            output_filenames( extradefs );
2524
            output_filenames( get_expanded_make_var_array( make, "EXTRAIDLFLAGS" ));
2525
            output_filename( source->filename );
2526
            output( "\n" );
2527
            output_filenames_obj_dir( make, targets );
2528
            output( ": %s", source->filename );
2529 2530
            output_filenames( dependencies );
            output( "\n" );
2531
        }
2532
        else if (!strcmp( ext, "in" ))  /* .in file or man page */
2533
        {
2534
            if (strendswith( obj, ".man" ) && source->file->args)
2535
            {
2536
                struct strarray symlinks;
2537
                char *dir, *dest = replace_extension( obj, ".man", "" );
2538
                char *lang = strchr( dest, '.' );
2539
                char *section = source->file->args;
2540 2541 2542
                if (lang)
                {
                    *lang++ = 0;
2543
                    dir = strmake( "$(mandir)/%s/man%s", lang, section );
2544
                }
2545
                else dir = strmake( "$(mandir)/man%s", section );
2546 2547
                add_install_rule( make, install_rules, dest, xstrdup(obj),
                                  strmake( "d%s/%s.%s", dir, dest, section ));
2548
                symlinks = get_expanded_file_local_var( make, dest, "SYMLINKS" );
2549
                for (i = 0; i < symlinks.count; i++)
2550 2551
                    add_install_rule( make, install_rules, symlinks.str[i],
                                      strmake( "%s.%s", dest, section ),
2552
                                      strmake( "y%s/%s.%s", dir, symlinks.str[i], section ));
2553
                free( dest );
2554
                free( dir );
2555
            }
2556
            strarray_add( &in_files, xstrdup(obj) );
2557
            strarray_add( &all_targets, xstrdup(obj) );
2558
            output( "%s: %s\n", obj_dir_path( make, obj ), source->filename );
2559
            output( "\t$(SED_CMD) %s >$@ || (rm -f $@ && false)\n", source->filename );
2560
            output( "%s:", obj_dir_path( make, obj ));
2561 2562
            output_filenames( dependencies );
            output( "\n" );
2563 2564
            add_install_rule( make, install_rules, obj, xstrdup( obj ),
                              strmake( "d$(datadir)/wine/%s", obj ));
2565
        }
2566 2567
        else if (!strcmp( ext, "sfd" ))  /* font file */
        {
2568
            char *ttf_file = src_dir_path( make, strmake( "%s.ttf", obj ));
2569
            if (fontforge && !make->src_dir)
2570
            {
2571
                output( "%s: %s\n", ttf_file, source->filename );
2572
                output( "\t%s -script %s %s $@\n",
2573
                        fontforge, top_src_dir_path( make, "fonts/genttf.ff" ), source->filename );
2574
                if (!(source->file->flags & FLAG_SFD_FONTS)) output( "all: %s\n", ttf_file );
2575
            }
2576
            if (source->file->flags & FLAG_INSTALL)
2577
            {
2578 2579
                strarray_add( &install_rules[INSTALL_LIB], strmake( "%s.ttf", obj ));
                strarray_add( &install_rules[INSTALL_LIB], strmake( "D$(fontdir)/%s.ttf", obj ));
2580
            }
2581
            if (source->file->flags & FLAG_SFD_FONTS)
2582
            {
2583
                struct strarray *array = source->file->args;
2584 2585 2586 2587 2588 2589

                for (i = 0; i < array->count; i++)
                {
                    char *font = strtok( xstrdup(array->str[i]), " \t" );
                    char *args = strtok( NULL, "" );

2590
                    strarray_add( &all_targets, xstrdup( font ));
2591 2592 2593
                    output( "%s: %s %s\n", obj_dir_path( make, font ),
                            tools_path( make, "sfnt2fon" ), ttf_file );
                    output( "\t%s -o $@ %s %s\n", tools_path( make, "sfnt2fon" ), ttf_file, args );
2594 2595
                    strarray_add( &install_rules[INSTALL_LIB], xstrdup(font) );
                    strarray_add( &install_rules[INSTALL_LIB], strmake( "d$(fontdir)/%s", font ));
2596 2597
                }
            }
2598
        }
2599 2600
        else if (!strcmp( ext, "svg" ))  /* svg file */
        {
2601
            if (convert && rsvg && icotool && !make->src_dir)
2602
            {
2603 2604 2605
                output( "%s.ico %s.bmp: %s\n",
                        src_dir_path( make, obj ), src_dir_path( make, obj ), source->filename );
                output( "\tCONVERT=\"%s\" ICOTOOL=\"%s\" RSVG=\"%s\" %s %s $@\n", convert, icotool, rsvg,
2606
                        top_src_dir_path( make, "tools/buildimage" ), source->filename );
2607 2608
            }
        }
2609 2610 2611 2612 2613 2614
        else if (!strcmp( ext, "po" ))  /* po file */
        {
            output( "%s.mo: %s\n", obj_dir_path( make, obj ), source->filename );
            output( "\t%s -o $@ %s\n", msgfmt, source->filename );
            strarray_add( &all_targets, strmake( "%s.mo", obj ));
        }
2615
        else if (!strcmp( ext, "res" ))
2616
        {
2617
            strarray_add( &res_files, source->name );
2618 2619 2620 2621
        }
        else if (!strcmp( ext, "tlb" ))
        {
            strarray_add( &all_targets, source->name );
2622
        }
2623 2624 2625 2626 2627 2628 2629 2630
        else if (!strcmp( ext, "h" ) || !strcmp( ext, "rh" ) || !strcmp( ext, "inl" ))  /* header file */
        {
            if (source->file->flags & FLAG_GENERATED)
            {
                strarray_add( &all_targets, source->name );
            }
            else
            {
2631 2632
                strarray_add( &install_rules[INSTALL_DEV], source->name );
                strarray_add( &install_rules[INSTALL_DEV],
2633 2634 2635
                              strmake( "D$(includedir)/%s", get_include_install_path( source->name ) ));
            }
        }
Alexandre Julliard's avatar
Alexandre Julliard committed
2636 2637
        else
        {
2638
            int need_cross = make->testdll ||
2639
                (source->file->flags & FLAG_C_IMPLIB) ||
2640
                (make->module && make->staticlib);
2641

2642
            if ((source->file->flags & FLAG_GENERATED) &&
2643
                (!make->testdll || !strendswith( source->filename, "testlist.c" )))
2644
                strarray_add( &clean_files, source->filename );
2645
            if (source->file->flags & FLAG_C_IMPLIB) strarray_add( &implib_objs, strmake( "%s.o", obj ));
2646
            strarray_add( &object_files, strmake( "%s.o", obj ));
2647
            output( "%s.o: %s\n", obj_dir_path( make, obj ), source->filename );
2648 2649
            output( "\t$(CC) -c -o $@ %s", source->filename );
            output_filenames( includes );
2650
            output_filenames( make->define_args );
2651
            output_filenames( extradefs );
2652
            if (make->module || make->staticlib || make->sharedlib || make->testdll)
2653 2654
            {
                output_filenames( dll_flags );
2655
                if (make->use_msvcrt) output_filenames( msvcrt_flags );
2656 2657 2658
            }
            output_filenames( extra_cflags );
            output_filenames( cpp_flags );
2659
            output_filename( "$(CFLAGS)" );
2660 2661
            output( "\n" );
            if (crosstarget && need_cross)
2662
            {
2663
                strarray_add( &crossobj_files, strmake( "%s.cross.o", obj ));
2664
                output( "%s.cross.o: %s\n", obj_dir_path( make, obj ), source->filename );
2665
                output( "\t$(CROSSCC) -c -o $@ %s", source->filename );
2666
                output_filenames( includes );
2667
                output_filenames( make->define_args );
2668
                output_filenames( extradefs );
2669
                if (make->use_msvcrt) output_filenames( msvcrt_flags );
2670
                output_filename( "-DWINE_CROSSTEST" );
2671
                output_filenames( cpp_flags );
2672
                output_filename( "$(CFLAGS)" );
2673
                output( "\n" );
2674
            }
2675
            if (make->testdll && !strcmp( ext, "c" ) && !(source->file->flags & FLAG_GENERATED))
2676
            {
2677
                strarray_add( &ok_files, strmake( "%s.ok", obj ));
2678
                output( "%s.ok:\n", obj_dir_path( make, obj ));
2679
                output( "\t%s $(RUNTESTFLAGS) -T %s -M %s -p %s%s %s && touch $@\n",
2680 2681 2682
                        top_src_dir_path( make, "tools/runtest" ), top_obj_dir_path( make, "" ),
                        make->testdll, replace_extension( make->testdll, ".dll", "_test.exe" ),
                        dll_ext, obj );
2683
            }
2684
            if (!strcmp( ext, "c" ) && !(source->file->flags & FLAG_GENERATED))
2685
                strarray_add( &c2man_files, source->filename );
2686 2687
            output( "%s.o", obj_dir_path( make, obj ));
            if (crosstarget && need_cross) output( " %s.cross.o", obj_dir_path( make, obj ));
2688
            output( ":" );
2689 2690
            output_filenames( dependencies );
            output( "\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
2691
        }
2692
        free( obj );
Alexandre Julliard's avatar
Alexandre Julliard committed
2693
    }
2694 2695 2696

    /* rules for files that depend on multiple sources */

2697
    if (dlldata_files.count)
2698
    {
2699 2700 2701
        output( "%s: %s %s\n", obj_dir_path( make, "dlldata.c" ),
                tools_path( make, "widl" ), src_dir_path( make, "Makefile.in" ));
        output( "\t%s --dlldata-only -o $@", tools_path( make, "widl" ));
2702
        output_filenames( dlldata_files );
2703 2704
        output( "\n" );
    }
2705

2706
    if (make->module && !make->staticlib)
2707 2708
    {
        struct strarray all_libs = empty_strarray;
2709
        struct strarray dep_libs = empty_strarray;
2710
        char *module_path = obj_dir_path( make, make->module );
2711
        char *spec_file = NULL;
2712

2713 2714
        if (!make->appmode.count)
            spec_file = src_dir_path( make, replace_extension( make->module, ".dll", ".spec" ));
2715 2716
        strarray_addall( &all_libs, add_import_libs( make, &dep_libs, make->delayimports, 0 ));
        strarray_addall( &all_libs, add_import_libs( make, &dep_libs, make->imports, 0 ));
2717
        add_import_libs( make, &dep_libs, get_default_imports( make ), 0 );  /* dependencies only */
2718
        strarray_addall( &all_libs, add_default_libraries( make, &dep_libs ));
2719

2720
        if (*dll_ext)
2721
        {
2722 2723
            for (i = 0; i < make->delayimports.count; i++)
                strarray_add( &all_libs, strmake( "-Wb,-d%s", make->delayimports.str[i] ));
2724 2725
            strarray_add( &all_targets, strmake( "%s%s", make->module, dll_ext ));
            strarray_add( &all_targets, strmake( "%s.fake", make->module ));
2726
            add_install_rule( make, install_rules, make->module, strmake( "%s%s", make->module, dll_ext ),
2727
                              strmake( "p$(dlldir)/%s%s", make->module, dll_ext ));
2728
            add_install_rule( make, install_rules, make->module, strmake( "%s.fake", make->module ),
2729
                              strmake( "d$(fakedlldir)/%s", make->module ));
2730
            output( "%s%s %s.fake:", module_path, dll_ext, module_path );
2731 2732 2733
        }
        else
        {
2734
            strarray_add( &all_libs, "-lwine" );
2735
            strarray_add( &all_targets, make->module );
2736
            add_install_rule( make, install_rules, make->module, make->module,
2737
                              strmake( "p$(%s)/%s", spec_file ? "dlldir" : "bindir", make->module ));
2738
            output( "%s:", module_path );
2739 2740
        }
        if (spec_file) output_filename( spec_file );
2741 2742
        output_filenames_obj_dir( make, object_files );
        output_filenames_obj_dir( make, res_files );
2743
        output_filenames( dep_libs );
2744 2745
        output_filename( tools_path( make, "winebuild" ));
        output_filename( tools_path( make, "winegcc" ));
2746
        output( "\n" );
2747 2748 2749
        output( "\t%s -o $@", tools_path( make, "winegcc" ));
        output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
        if (tools_dir) output_filename( strmake( "--sysroot=%s", top_obj_dir_path( make, "" )));
2750 2751
        output_filenames( target_flags );
        output_filenames( unwind_flags );
2752 2753 2754
        if (spec_file)
        {
            output( " -shared %s", spec_file );
2755
            output_filenames( make->extradllflags );
2756
        }
2757
        else output_filenames( make->appmode );
2758 2759
        output_filenames_obj_dir( make, object_files );
        output_filenames_obj_dir( make, res_files );
2760 2761 2762
        output_filenames( all_libs );
        output_filename( "$(LDFLAGS)" );
        output( "\n" );
2763

2764
        if (spec_file && make->importlib)
2765
        {
2766
            char *importlib_path = obj_dir_path( make, strmake( "lib%s", make->importlib ));
2767
            if (*dll_ext && !implib_objs.count)
2768
            {
2769
                strarray_add( &clean_files, strmake( "lib%s.def", make->importlib ));
2770 2771
                output( "%s.def: %s %s\n", importlib_path, tools_path( make, "winebuild" ), spec_file );
                output( "\t%s -w --def -o $@ --export %s", tools_path( make, "winebuild" ), spec_file );
2772
                output_filenames( target_flags );
2773
                if (make->is_win16) output_filename( "-m16" );
2774
                output( "\n" );
2775 2776
                add_install_rule( make, install_rules, make->importlib,
                                  strmake( "lib%s.def", make->importlib ),
2777
                                  strmake( "d$(dlldir)/lib%s.def", make->importlib ));
2778 2779 2780
            }
            else
            {
2781
                strarray_add( &clean_files, strmake( "lib%s.a", make->importlib ));
2782 2783
                output( "%s.a: %s %s", importlib_path, tools_path( make, "winebuild" ), spec_file );
                output_filenames_obj_dir( make, implib_objs );
2784
                output( "\n" );
2785
                output( "\t%s -w --implib -o $@ --export %s", tools_path( make, "winebuild" ), spec_file );
2786
                output_filenames( target_flags );
2787
                output_filenames_obj_dir( make, implib_objs );
2788
                output( "\n" );
2789 2790
                add_install_rule( make, install_rules, make->importlib,
                                  strmake( "lib%s.a", make->importlib ),
2791
                                  strmake( "d$(dlldir)/lib%s.a", make->importlib ));
2792
            }
2793
            if (crosstarget && !make->is_win16)
2794 2795
            {
                struct strarray cross_files = strarray_replace_extension( &implib_objs, ".o", ".cross.o" );
2796
                strarray_add( &clean_files, strmake( "lib%s.cross.a", make->importlib ));
2797 2798
                output( "%s.cross.a: %s %s", importlib_path, tools_path( make, "winebuild" ), spec_file );
                output_filenames_obj_dir( make, cross_files );
2799
                output( "\n" );
2800
                output( "\t%s -b %s -w --implib -o $@ --export %s",
2801 2802
                        tools_path( make, "winebuild" ), crosstarget, spec_file );
                output_filenames_obj_dir( make, cross_files );
2803 2804 2805
                output( "\n" );
            }
        }
2806 2807 2808

        if (spec_file)
        {
2809
            if (c2man_files.count)
2810 2811
            {
                output( "manpages::\n" );
2812 2813 2814
                output( "\t%s -w %s", top_src_dir_path( make, "tools/c2man.pl" ), spec_file );
                output_filename( strmake( "-R%s", top_src_dir_path( make, "" )));
                output_filename( strmake( "-I%s", top_src_dir_path( make, "include" )));
2815 2816
                output_filename( strmake( "-o %s/man%s",
                                          top_obj_dir_path( make, "documentation" ), man_ext ));
2817 2818 2819
                output_filenames( c2man_files );
                output( "\n" );
                output( "htmlpages::\n" );
2820 2821 2822
                output( "\t%s -Th -w %s", top_src_dir_path( make, "tools/c2man.pl" ), spec_file );
                output_filename( strmake( "-R%s", top_src_dir_path( make, "" )));
                output_filename( strmake( "-I%s", top_src_dir_path( make, "include" )));
2823 2824
                output_filename( strmake( "-o %s",
                                          top_obj_dir_path( make, "documentation/html" )));
2825 2826 2827
                output_filenames( c2man_files );
                output( "\n" );
                output( "sgmlpages::\n" );
2828 2829 2830
                output( "\t%s -Ts -w %s", top_src_dir_path( make, "tools/c2man.pl" ), spec_file );
                output_filename( strmake( "-R%s", top_src_dir_path( make, "" )));
                output_filename( strmake( "-I%s", top_src_dir_path( make, "include" )));
2831 2832
                output_filename( strmake( "-o %s",
                                          top_obj_dir_path( make, "documentation/api-guide" )));
2833 2834 2835
                output_filenames( c2man_files );
                output( "\n" );
                output( "xmlpages::\n" );
2836 2837 2838
                output( "\t%s -Tx -w %s", top_src_dir_path( make, "tools/c2man.pl" ), spec_file );
                output_filename( strmake( "-R%s", top_src_dir_path( make, "" )));
                output_filename( strmake( "-I%s", top_src_dir_path( make, "include" )));
2839 2840
                output_filename( strmake( "-o %s",
                                          top_obj_dir_path( make, "documentation/api-guide-xml" )));
2841 2842 2843 2844 2845 2846 2847 2848 2849
                output_filenames( c2man_files );
                output( "\n" );
                strarray_add( &phony_targets, "manpages" );
                strarray_add( &phony_targets, "htmlpages" );
                strarray_add( &phony_targets, "sgmlpages" );
                strarray_add( &phony_targets, "xmlpages" );
            }
            else output( "manpages htmlpages sgmlpages xmlpages::\n" );
        }
2850 2851 2852
        else if (*dll_ext)
        {
            char *binary = replace_extension( make->module, ".exe", "" );
2853 2854
            add_install_rule( make, install_rules, binary, "wineapploader",
                              strmake( "t$(bindir)/%s", binary ));
2855
        }
2856 2857
    }

2858
    if (make->staticlib)
2859
    {
2860
        strarray_add( &all_targets, make->staticlib );
2861 2862
        output( "%s:", obj_dir_path( make, make->staticlib ));
        output_filenames_obj_dir( make, object_files );
2863
        output( "\n\trm -f $@\n" );
2864
        output( "\t$(AR) $(ARFLAGS) $@" );
2865
        output_filenames_obj_dir( make, object_files );
2866
        output( "\n\t$(RANLIB) $@\n" );
2867 2868
        add_install_rule( make, install_rules, make->staticlib, make->staticlib,
                          strmake( "d$(dlldir)/%s", make->staticlib ));
2869
        if (crosstarget && make->module)
2870
        {
2871
            char *name = replace_extension( make->staticlib, ".a", ".cross.a" );
2872 2873

            strarray_add( &all_targets, name );
2874 2875
            output( "%s:", obj_dir_path( make, name ));
            output_filenames_obj_dir( make, crossobj_files );
2876
            output( "\n\trm -f $@\n" );
2877
            output( "\t%s-ar $(ARFLAGS) $@", crosstarget );
2878
            output_filenames_obj_dir( make, crossobj_files );
2879 2880 2881 2882
            output( "\n\t%s-ranlib $@\n", crosstarget );
        }
    }

2883 2884 2885 2886 2887
    if (make->sharedlib)
    {
        char *basename, *p;
        struct strarray names = get_shared_lib_names( make->sharedlib );
        struct strarray all_libs = empty_strarray;
2888
        struct strarray dep_libs = empty_strarray;
2889 2890 2891 2892

        basename = xstrdup( make->sharedlib );
        if ((p = strchr( basename, '.' ))) *p = 0;

2893
        strarray_addall( &dep_libs, get_local_dependencies( make, basename, in_files ));
2894
        strarray_addall( &all_libs, get_expanded_file_local_var( make, basename, "LDFLAGS" ));
2895
        strarray_addall( &all_libs, add_default_libraries( make, &dep_libs ));
2896 2897 2898

        output( "%s:", obj_dir_path( make, make->sharedlib ));
        output_filenames_obj_dir( make, object_files );
2899
        output_filenames( dep_libs );
2900 2901 2902 2903 2904 2905
        output( "\n" );
        output( "\t$(CC) -o $@" );
        output_filenames_obj_dir( make, object_files );
        output_filenames( all_libs );
        output_filename( "$(LDFLAGS)" );
        output( "\n" );
2906 2907
        add_install_rule( make, install_rules, make->sharedlib, make->sharedlib,
                          strmake( "p$(libdir)/%s", make->sharedlib ));
2908 2909 2910
        for (i = 1; i < names.count; i++)
        {
            output( "%s: %s\n", obj_dir_path( make, names.str[i] ), obj_dir_path( make, names.str[i-1] ));
2911
            output_symlink_rule( obj_dir_path( make, names.str[i-1] ), obj_dir_path( make, names.str[i] ));
2912 2913
            add_install_rule( make, install_rules, names.str[i], names.str[i-1],
                              strmake( "y$(libdir)/%s", names.str[i] ));
2914 2915 2916 2917
        }
        strarray_addall( &all_targets, names );
    }

2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929
    if (make->importlib && !make->module)  /* stand-alone import lib (for libwine) */
    {
        char *def_file = replace_extension( make->importlib, ".a", ".def" );

        if (!strncmp( def_file, "lib", 3 )) def_file += 3;
        output( "%s: %s\n", obj_dir_path( make, make->importlib ), src_dir_path( make, def_file ));
        output( "\t%s -l $@ -d %s\n", dlltool, src_dir_path( make, def_file ));
        add_install_rule( make, install_rules, make->importlib, make->importlib,
                          strmake( "d$(libdir)/%s", make->importlib ));
        strarray_add( &all_targets, make->importlib );
    }

2930
    if (make->testdll)
2931
    {
2932 2933
        char *testmodule = replace_extension( make->testdll, ".dll", "_test.exe" );
        char *stripped = replace_extension( make->testdll, ".dll", "_test-stripped.exe" );
2934
        char *testres = replace_extension( make->testdll, ".dll", "_test.res" );
2935 2936
        struct strarray dep_libs = empty_strarray;
        struct strarray all_libs = add_import_libs( make, &dep_libs, make->imports, 0 );
2937

2938
        add_import_libs( make, &dep_libs, get_default_imports( make ), 0 );  /* dependencies only */
2939
        strarray_addall( &all_libs, libs );
2940 2941
        strarray_add( &all_targets, strmake( "%s%s", testmodule, dll_ext ));
        strarray_add( &clean_files, strmake( "%s%s", stripped, dll_ext ));
2942 2943 2944 2945
        output( "%s%s:\n", obj_dir_path( make, testmodule ), dll_ext );
        output( "\t%s -o $@", tools_path( make, "winegcc" ));
        output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
        if (tools_dir) output_filename( strmake( "--sysroot=%s", top_obj_dir_path( make, "" )));
2946 2947
        output_filenames( target_flags );
        output_filenames( unwind_flags );
2948
        output_filenames( make->appmode );
2949 2950
        output_filenames_obj_dir( make, object_files );
        output_filenames_obj_dir( make, res_files );
2951 2952 2953
        output_filenames( all_libs );
        output_filename( "$(LDFLAGS)" );
        output( "\n" );
2954 2955 2956 2957
        output( "%s%s:\n", obj_dir_path( make, stripped ), dll_ext );
        output( "\t%s -o $@", tools_path( make, "winegcc" ));
        output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
        if (tools_dir) output_filename( strmake( "--sysroot=%s", top_obj_dir_path( make, "" )));
2958 2959
        output_filenames( target_flags );
        output_filenames( unwind_flags );
2960
        output_filename( strmake( "-Wb,-F,%s", testmodule ));
2961
        output_filenames( make->appmode );
2962 2963
        output_filenames_obj_dir( make, object_files );
        output_filenames_obj_dir( make, res_files );
2964 2965 2966
        output_filenames( all_libs );
        output_filename( "$(LDFLAGS)" );
        output( "\n" );
2967 2968 2969 2970
        output( "%s%s %s%s:", obj_dir_path( make, testmodule ), dll_ext,
                obj_dir_path( make, stripped ), dll_ext );
        output_filenames_obj_dir( make, object_files );
        output_filenames_obj_dir( make, res_files );
2971
        output_filenames( dep_libs );
2972 2973
        output_filename( tools_path( make, "winebuild" ));
        output_filename( tools_path( make, "winegcc" ));
2974 2975
        output( "\n" );

2976 2977
        if (!make->disabled)
            output( "all: %s/%s\n", top_obj_dir_path( make, "programs/winetest" ), testres );
2978 2979
        output( "%s/%s: %s%s\n", top_obj_dir_path( make, "programs/winetest" ), testres,
                obj_dir_path( make, stripped ), dll_ext );
2980
        output( "\techo \"%s TESTRES \\\"%s%s\\\"\" | %s -o $@\n",
2981
                testmodule, obj_dir_path( make, stripped ), dll_ext, tools_path( make, "wrc" ));
2982 2983 2984

        if (crosstarget)
        {
2985
            char *crosstest = replace_extension( make->testdll, ".dll", "_crosstest.exe" );
2986

2987 2988
            dep_libs = empty_strarray;
            all_libs = add_import_libs( make, &dep_libs, make->imports, 1 );
2989
            add_import_libs( make, &dep_libs, get_default_imports( make ), 1 );  /* dependencies only */
2990
            strarray_addall( &all_libs, libs );
2991
            strarray_add( &clean_files, crosstest );
2992 2993 2994
            output( "%s:", obj_dir_path( make, crosstest ));
            output_filenames_obj_dir( make, crossobj_files );
            output_filenames_obj_dir( make, res_files );
2995
            output_filenames( dep_libs );
2996 2997
            output_filename( tools_path( make, "winebuild" ));
            output_filename( tools_path( make, "winegcc" ));
2998
            output( "\n" );
2999 3000 3001
            output( "\t%s -o $@ -b %s", tools_path( make, "winegcc" ), crosstarget );
            output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
            if (tools_dir) output_filename( strmake( "--sysroot=%s", top_obj_dir_path( make, "" )));
3002
            output_filename( "--lib-suffix=.cross.a" );
3003 3004
            output_filenames_obj_dir( make, crossobj_files );
            output_filenames_obj_dir( make, res_files );
3005 3006 3007
            output_filenames( all_libs );
            output_filename( "$(LDFLAGS)" );
            output( "\n" );
3008 3009 3010 3011 3012 3013
            if (!make->disabled)
            {
                output( "%s: %s\n", obj_dir_path( make, "crosstest" ), obj_dir_path( make, crosstest ));
                strarray_add( &phony_targets, obj_dir_path( make, "crosstest" ));
                if (make->obj_dir) output( "crosstest: %s\n", obj_dir_path( make, "crosstest" ));
            }
3014 3015
        }

3016
        output_filenames_obj_dir( make, ok_files );
3017
        output( ": %s%s ../%s%s\n", testmodule, dll_ext, make->testdll, dll_ext );
3018 3019 3020 3021 3022 3023 3024 3025
        if (!make->disabled)
        {
            output( "check test:" );
            output_filenames_obj_dir( make, ok_files );
            output( "\n" );
            strarray_add( &phony_targets, "check" );
            strarray_add( &phony_targets, "test" );
        }
3026
        output( "testclean::\n" );
3027
        output( "\trm -f" );
3028
        output_filenames_obj_dir( make, ok_files );
3029
        output( "\n" );
3030
        strarray_addall( &clean_files, ok_files );
3031
        strarray_add( &phony_targets, "testclean" );
3032 3033
    }

3034 3035
    for (i = 0; i < make->programs.count; i++)
    {
3036
        char *program_installed = NULL;
3037
        char *program = strmake( "%s%s", make->programs.str[i], exe_ext );
3038
        struct strarray deps = get_local_dependencies( make, make->programs.str[i], in_files );
3039 3040 3041
        struct strarray all_libs = get_expanded_file_local_var( make, make->programs.str[i], "LDFLAGS" );
        struct strarray objs     = get_expanded_file_local_var( make, make->programs.str[i], "OBJS" );
        struct strarray symlinks = get_expanded_file_local_var( make, make->programs.str[i], "SYMLINKS" );
3042 3043

        if (!objs.count) objs = object_files;
3044 3045
        strarray_addall( &all_libs, add_default_libraries( make, &deps ));

3046 3047
        output( "%s:", obj_dir_path( make, program ) );
        output_filenames_obj_dir( make, objs );
3048
        output_filenames( deps );
3049 3050 3051
        output( "\n" );
        output( "\t$(CC) -o $@" );
        output_filenames_obj_dir( make, objs );
3052 3053 3054 3055 3056 3057

        if (strarray_exists( &all_libs, "-lwine" ))
        {
            strarray_add( &all_libs, strmake( "-L%s", top_obj_dir_path( make, "libs/wine" )));
            if (ldrpath_local && ldrpath_install)
            {
3058
                program_installed = strmake( "%s-installed%s", make->programs.str[i], exe_ext );
3059 3060 3061 3062 3063 3064
                output_filename( ldrpath_local );
                output_filenames( all_libs );
                output_filename( "$(LDFLAGS)" );
                output( "\n" );
                output( "%s:", obj_dir_path( make, program_installed ) );
                output_filenames_obj_dir( make, objs );
3065
                output_filenames( deps );
3066 3067 3068 3069 3070 3071 3072 3073
                output( "\n" );
                output( "\t$(CC) -o $@" );
                output_filenames_obj_dir( make, objs );
                output_filename( ldrpath_install );
                strarray_add( &all_targets, program_installed );
            }
        }

3074 3075 3076 3077
        output_filenames( all_libs );
        output_filename( "$(LDFLAGS)" );
        output( "\n" );
        strarray_add( &all_targets, program );
3078

3079
        for (j = 0; j < symlinks.count; j++)
3080
        {
3081 3082
            output( "%s: %s\n", obj_dir_path( make, symlinks.str[j] ), obj_dir_path( make, program ));
            output_symlink_rule( obj_dir_path( make, program ), obj_dir_path( make, symlinks.str[j] ));
3083
        }
3084
        strarray_addall( &all_targets, symlinks );
3085

3086
        add_install_rule( make, install_rules, program, program_installed ? program_installed : program,
3087
                          strmake( "p$(bindir)/%s", program ));
3088
        for (j = 0; j < symlinks.count; j++)
3089
            add_install_rule( make, install_rules, symlinks.str[j], program,
3090
                              strmake( "y$(bindir)/%s%s", symlinks.str[j], exe_ext ));
3091 3092
    }

3093
    for (i = 0; i < make->scripts.count; i++)
3094
        add_install_rule( make, install_rules, make->scripts.str[i], make->scripts.str[i],
3095 3096
                          strmake( "S$(bindir)/%s", make->scripts.str[i] ));

3097
    if (!make->disabled)
3098
    {
3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116
        if (all_targets.count)
        {
            output( "all:" );
            output_filenames_obj_dir( make, all_targets );
            output( "\n" );
        }
        strarray_addall( &uninstall_files, output_install_rules( make, install_rules[INSTALL_LIB],
                                                                 "install-lib", &phony_targets ));
        strarray_addall( &uninstall_files, output_install_rules( make, install_rules[INSTALL_DEV],
                                                                 "install-dev", &phony_targets ));
        if (uninstall_files.count)
        {
            output( "uninstall::\n" );
            output( "\trm -f" );
            output_filenames( uninstall_files );
            output( "\n" );
            strarray_add_uniq( &phony_targets, "uninstall" );
        }
3117
    }
3118

3119 3120 3121
    strarray_addall( &clean_files, object_files );
    strarray_addall( &clean_files, crossobj_files );
    strarray_addall( &clean_files, res_files );
3122
    strarray_addall( &clean_files, all_targets );
3123
    strarray_addall( &clean_files, get_expanded_make_var_array( make, "EXTRA_TARGETS" ));
3124

3125 3126
    if (make->subdirs.count)
    {
3127
        struct strarray build_deps = empty_strarray;
3128
        struct strarray makefile_deps = empty_strarray;
3129
        struct strarray distclean_files = get_expanded_make_var_array( make, "CONFIGURE_TARGETS" );
3130

3131 3132
        strarray_add( &distclean_files, obj_dir_path( make, output_makefile_name ));
        if (!make->src_dir) strarray_add( &distclean_files, obj_dir_path( make, ".gitignore" ));
3133 3134
        for (i = 0; i < make->subdirs.count; i++)
        {
3135 3136
            const struct makefile *submake = make->submakes[i];

3137 3138
            strarray_add( &makefile_deps, top_src_dir_path( make, base_dir_path( submake,
                                                            strmake ( "%s.in", output_makefile_name ))));
3139 3140 3141 3142
            strarray_add( &distclean_files, base_dir_path( submake, output_makefile_name ));
            if (!make->src_dir) strarray_add( &distclean_files, base_dir_path( submake, ".gitignore" ));
            if (submake->testdll) strarray_add( &distclean_files, base_dir_path( submake, "testlist.c" ));
            strarray_addall( &build_deps, output_importlib_symlinks( make, submake ));
3143
        }
3144 3145 3146
        output( "Makefile:" );
        output_filenames( makefile_deps );
        output( "\n" );
3147 3148 3149 3150 3151
        output( "distclean::\n");
        output( "\trm -f" );
        output_filenames( distclean_files );
        output( "\n" );
        strarray_add( &phony_targets, "distclean" );
3152

3153 3154 3155 3156 3157 3158 3159
        if (build_deps.count)
        {
            output( "__builddeps__:" );
            output_filenames( build_deps );
            output( "\n" );
            strarray_addall( &clean_files, build_deps );
        }
3160
        if (get_expanded_make_variable( make, "GETTEXTPO_LIBS" )) output_po_files( make );
3161 3162
    }

3163 3164 3165 3166 3167 3168 3169 3170 3171 3172
    if (clean_files.count)
    {
        output( "%s::\n", obj_dir_path( make, "clean" ));
        output( "\trm -f" );
        output_filenames_obj_dir( make, clean_files );
        output( "\n" );
        if (make->obj_dir) output( "__clean__: %s\n", obj_dir_path( make, "clean" ));
        strarray_add( &phony_targets, obj_dir_path( make, "clean" ));
    }

3173 3174
    if (phony_targets.count)
    {
3175
        output( ".PHONY:" );
3176
        output_filenames( phony_targets );
3177 3178 3179
        output( "\n" );
    }

3180 3181
    if (!make->base_dir)
        strarray_addall( &clean_files, get_expanded_make_var_array( make, "CONFIGURE_TARGETS" ));
3182
    return clean_files;
Alexandre Julliard's avatar
Alexandre Julliard committed
3183 3184 3185
}


3186 3187 3188
/*******************************************************************
 *         create_temp_file
 */
3189
static FILE *create_temp_file( const char *orig )
3190
{
3191
    char *name = xmalloc( strlen(orig) + 13 );
3192 3193 3194 3195 3196 3197
    unsigned int i, id = getpid();
    int fd;
    FILE *ret = NULL;

    for (i = 0; i < 100; i++)
    {
3198
        sprintf( name, "%s.tmp%08x", orig, id );
3199
        if ((fd = open( name, O_RDWR | O_CREAT | O_EXCL, 0666 )) != -1)
3200 3201 3202 3203 3204 3205 3206
        {
            ret = fdopen( fd, "w" );
            break;
        }
        if (errno != EEXIST) break;
        id += 7777;
    }
3207
    if (!ret) fatal_error( "failed to create output file for '%s'\n", orig );
3208
    temp_file_name = name;
3209 3210 3211 3212
    return ret;
}


3213 3214 3215
/*******************************************************************
 *         rename_temp_file
 */
3216
static void rename_temp_file( const char *dest )
3217
{
3218
    int ret = rename( temp_file_name, dest );
3219 3220 3221 3222
    if (ret == -1 && errno == EEXIST)
    {
        /* rename doesn't overwrite on windows */
        unlink( dest );
3223
        ret = rename( temp_file_name, dest );
3224
    }
3225 3226
    if (ret == -1) fatal_error( "failed to rename output file to '%s'\n", dest );
    temp_file_name = NULL;
3227 3228 3229
}


3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272
/*******************************************************************
 *         are_files_identical
 */
static int are_files_identical( FILE *file1, FILE *file2 )
{
    for (;;)
    {
        char buffer1[8192], buffer2[8192];
        int size1 = fread( buffer1, 1, sizeof(buffer1), file1 );
        int size2 = fread( buffer2, 1, sizeof(buffer2), file2 );
        if (size1 != size2) return 0;
        if (!size1) return feof( file1 ) && feof( file2 );
        if (memcmp( buffer1, buffer2, size1 )) return 0;
    }
}


/*******************************************************************
 *         rename_temp_file_if_changed
 */
static void rename_temp_file_if_changed( const char *dest )
{
    FILE *file1, *file2;
    int do_rename = 1;

    if ((file1 = fopen( dest, "r" )))
    {
        if ((file2 = fopen( temp_file_name, "r" )))
        {
            do_rename = !are_files_identical( file1, file2 );
            fclose( file2 );
        }
        fclose( file1 );
    }
    if (!do_rename)
    {
        unlink( temp_file_name );
        temp_file_name = NULL;
    }
    else rename_temp_file( dest );
}


3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293
/*******************************************************************
 *         output_linguas
 */
static void output_linguas( const struct makefile *make )
{
    const char *dest = base_dir_path( make, "LINGUAS" );
    struct incl_file *source;

    output_file = create_temp_file( dest );

    output( "# Automatically generated by make depend; DO NOT EDIT!!\n" );
    LIST_FOR_EACH_ENTRY( source, &make->sources, struct incl_file, entry )
        if (strendswith( source->name, ".po" ))
            output( "%s\n", replace_extension( source->name, ".po", "" ));

    if (fclose( output_file )) fatal_perror( "write" );
    output_file = NULL;
    rename_temp_file_if_changed( dest );
}


3294 3295 3296
/*******************************************************************
 *         output_testlist
 */
3297
static void output_testlist( const struct makefile *make )
3298
{
3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309
    const char *dest = base_dir_path( make, "testlist.c" );
    struct strarray files = empty_strarray;
    struct incl_file *source;
    unsigned int i;

    LIST_FOR_EACH_ENTRY( source, &make->sources, struct incl_file, entry )
    {
        if (source->file->flags & FLAG_GENERATED) continue;
        if (!strendswith( source->name, ".c" )) continue;
        strarray_add( &files, replace_extension( source->name, ".c", "" ));
    }
3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332

    output_file = create_temp_file( dest );

    output( "/* Automatically generated by make depend; DO NOT EDIT!! */\n\n" );
    output( "#define WIN32_LEAN_AND_MEAN\n" );
    output( "#include <windows.h>\n\n" );
    output( "#define STANDALONE\n" );
    output( "#include \"wine/test.h\"\n\n" );

    for (i = 0; i < files.count; i++) output( "extern void func_%s(void);\n", files.str[i] );
    output( "\n" );
    output( "const struct test winetest_testlist[] =\n" );
    output( "{\n" );
    for (i = 0; i < files.count; i++) output( "    { \"%s\", func_%s },\n", files.str[i], files.str[i] );
    output( "    { 0, 0 }\n" );
    output( "};\n" );

    if (fclose( output_file )) fatal_perror( "write" );
    output_file = NULL;
    rename_temp_file_if_changed( dest );
}


3333 3334 3335
/*******************************************************************
 *         output_gitignore
 */
3336
static void output_gitignore( const char *dest, struct strarray files )
3337 3338 3339
{
    int i;

3340
    output_file = create_temp_file( dest );
3341 3342

    output( "# Automatically generated by make depend; DO NOT EDIT!!\n" );
3343
    for (i = 0; i < files.count; i++)
3344
    {
3345 3346
        if (!strchr( files.str[i], '/' )) output( "/" );
        output( "%s\n", files.str[i] );
3347 3348
    }

3349
    if (fclose( output_file )) fatal_perror( "write" );
3350
    output_file = NULL;
3351
    rename_temp_file( dest );
3352 3353 3354
}


3355 3356 3357
/*******************************************************************
 *         output_top_variables
 */
3358
static void output_top_variables( const struct makefile *make )
3359 3360 3361 3362 3363 3364 3365 3366 3367
{
    unsigned int i;
    struct strarray *vars = &top_makefile->vars;

    if (!make->base_dir) return;  /* don't output variables in the top makefile */

    output( "# Automatically generated by make depend; DO NOT EDIT!!\n\n" );
    output( "all:\n\n" );
    for (i = 0; i < vars->count; i += 2)
3368 3369
    {
        if (!strcmp( vars->str[i], "SUBDIRS" )) continue;  /* not inherited */
3370
        output( "%s = %s\n", vars->str[i], get_make_variable( make, vars->str[i] ));
3371
    }
3372 3373 3374 3375
    output( "\n" );
}


Alexandre Julliard's avatar
Alexandre Julliard committed
3376 3377 3378
/*******************************************************************
 *         output_dependencies
 */
3379
static void output_dependencies( const struct makefile *make )
Alexandre Julliard's avatar
Alexandre Julliard committed
3380
{
3381
    struct strarray targets, ignore_files = empty_strarray;
3382
    char buffer[1024];
3383
    FILE *src_file;
3384
    int found = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
3385

3386 3387
    if (make->base_dir) create_dir( make->base_dir );

3388
    output_file_name = base_dir_path( make, output_makefile_name );
3389 3390
    output_file = create_temp_file( output_file_name );
    output_top_variables( make );
3391

3392
    /* copy the contents of the source makefile */
3393
    src_file = open_input_makefile( make );
3394 3395
    while (fgets( buffer, sizeof(buffer), src_file ) && !found)
    {
3396
        if (fwrite( buffer, 1, strlen(buffer), output_file ) != strlen(buffer)) fatal_perror( "write" );
3397 3398
        found = !strncmp( buffer, separator, strlen(separator) );
    }
3399
    if (fclose( src_file )) fatal_perror( "close" );
3400
    input_file_name = NULL;
3401

3402
    if (!found) output( "\n%s (everything below this line is auto-generated; DO NOT EDIT!!)\n", separator );
3403
    targets = output_sources( make );
3404 3405 3406

    fclose( output_file );
    output_file = NULL;
3407
    rename_temp_file( output_file_name );
3408

3409 3410
    strarray_add( &ignore_files, ".gitignore" );
    strarray_add( &ignore_files, "Makefile" );
3411 3412 3413 3414 3415
    if (make->testdll)
    {
        output_testlist( make );
        strarray_add( &ignore_files, "testlist.c" );
    }
3416 3417 3418 3419 3420
    if (make->base_dir && !strcmp( make->base_dir, "po" ))
    {
        output_linguas( make );
        strarray_add( &ignore_files, "LINGUAS" );
    }
3421
    strarray_addall( &ignore_files, targets );
3422
    if (!make->src_dir) output_gitignore( base_dir_path( make, ".gitignore" ), ignore_files );
3423

3424 3425
    create_file_directories( make, targets );

3426
    output_file_name = NULL;
3427 3428 3429 3430
}


/*******************************************************************
3431
 *         load_sources
3432
 */
3433
static void load_sources( struct makefile *make )
3434 3435 3436 3437 3438 3439 3440
{
    static const char *source_vars[] =
    {
        "C_SRCS",
        "OBJC_SRCS",
        "RC_SRCS",
        "MC_SRCS",
3441
        "IDL_SRCS",
3442 3443
        "BISON_SRCS",
        "LEX_SRCS",
3444
        "HEADER_SRCS",
3445
        "XTEMPLATE_SRCS",
3446
        "SVG_SRCS",
3447
        "FONT_SRCS",
3448
        "IN_SRCS",
3449
        "PO_SRCS",
3450 3451 3452 3453 3454 3455 3456 3457
        "MANPAGES",
        NULL
    };
    const char **var;
    unsigned int i;
    struct strarray value;
    struct incl_file *file;

3458 3459 3460 3461 3462
    if (root_src_dir)
    {
        make->top_src_dir = concat_paths( make->top_obj_dir, root_src_dir );
        make->src_dir = concat_paths( make->top_src_dir, make->base_dir );
    }
3463
    strarray_set_value( &make->vars, "top_builddir", top_obj_dir_path( make, "" ));
3464
    strarray_set_value( &make->vars, "top_srcdir", top_src_dir_path( make, "" ));
3465
    strarray_set_value( &make->vars, "srcdir", src_dir_path( make, "" ));
3466

3467 3468 3469
    make->parent_dir    = get_expanded_make_variable( make, "PARENTSRC" );
    make->module        = get_expanded_make_variable( make, "MODULE" );
    make->testdll       = get_expanded_make_variable( make, "TESTDLL" );
3470
    make->sharedlib     = get_expanded_make_variable( make, "SHAREDLIB" );
3471 3472
    make->staticlib     = get_expanded_make_variable( make, "STATICLIB" );
    make->importlib     = get_expanded_make_variable( make, "IMPORTLIB" );
3473

3474
    make->programs      = get_expanded_make_var_array( make, "PROGRAMS" );
3475
    make->scripts       = get_expanded_make_var_array( make, "SCRIPTS" );
3476 3477 3478 3479
    make->appmode       = get_expanded_make_var_array( make, "APPMODE" );
    make->imports       = get_expanded_make_var_array( make, "IMPORTS" );
    make->delayimports  = get_expanded_make_var_array( make, "DELAYIMPORTS" );
    make->extradllflags = get_expanded_make_var_array( make, "EXTRADLLFLAGS" );
3480 3481
    make->install_lib   = get_expanded_make_var_array( make, "INSTALL_LIB" );
    make->install_dev   = get_expanded_make_var_array( make, "INSTALL_DEV" );
3482 3483

    if (make->module && strendswith( make->module, ".a" )) make->staticlib = make->module;
3484

3485
    make->disabled   = make->base_dir && strarray_exists( &disabled_dirs, make->base_dir );
3486 3487 3488
    make->is_win16   = strarray_exists( &make->extradllflags, "-m16" );
    make->use_msvcrt = strarray_exists( &make->appmode, "-mno-cygwin" );

3489
    for (i = 0; i < make->imports.count && !make->use_msvcrt; i++)
3490 3491
        make->use_msvcrt = !strncmp( make->imports.str[i], "msvcr", 5 ) ||
                           !strcmp( make->imports.str[i], "ucrtbase" );
3492

3493 3494 3495 3496 3497 3498
    if (make->module && !make->install_lib.count && !make->install_dev.count)
    {
        if (make->importlib) strarray_add( &make->install_dev, make->importlib );
        if (make->staticlib) strarray_add( &make->install_dev, make->staticlib );
        else strarray_add( &make->install_lib, make->module );
    }
3499

3500
    make->include_paths = empty_strarray;
3501 3502
    make->define_args = empty_strarray;
    strarray_add( &make->define_args, "-D__WINESRC__" );
3503

3504
    value = get_expanded_make_var_array( make, "EXTRAINCL" );
3505 3506
    for (i = 0; i < value.count; i++)
        if (!strncmp( value.str[i], "-I", 2 ))
3507
            strarray_add_uniq( &make->include_paths, value.str[i] + 2 );
3508
        else
3509
            strarray_add_uniq( &make->define_args, value.str[i] );
3510
    strarray_addall( &make->define_args, get_expanded_make_var_array( make, "EXTRADEFS" ));
3511

3512
    list_init( &make->sources );
3513
    list_init( &make->includes );
3514 3515 3516

    for (var = source_vars; *var; var++)
    {
3517 3518
        value = get_expanded_make_var_array( make, *var );
        for (i = 0; i < value.count; i++) add_src_file( make, value.str[i] );
3519 3520
    }

3521
    add_generated_sources( make );
3522

3523
    value = get_expanded_make_var_array( make, "EXTRA_OBJS" );
3524 3525 3526 3527
    for (i = 0; i < value.count; i++)
    {
        /* default to .c for unknown extra object files */
        if (strendswith( value.str[i], ".o" ))
3528
            add_generated_source( make, value.str[i], replace_extension( value.str[i], ".o", ".c" ) );
3529
        else
3530
            add_generated_source( make, value.str[i], NULL );
3531 3532
    }

3533
    LIST_FOR_EACH_ENTRY( file, &make->includes, struct incl_file, entry ) parse_file( make, file, 0 );
Alexandre Julliard's avatar
Alexandre Julliard committed
3534 3535 3536
}


3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559
/*******************************************************************
 *         parse_makeflags
 */
static void parse_makeflags( const char *flags )
{
    const char *p = flags;
    char *var, *buffer = xmalloc( strlen(flags) + 1 );

    while (*p)
    {
        while (isspace(*p)) p++;
        var = buffer;
        while (*p && !isspace(*p))
        {
            if (*p == '\\' && p[1]) p++;
            *var++ = *p++;
        }
        *var = 0;
        if (var > buffer) set_make_variable( &cmdline_vars, buffer );
    }
}


Alexandre Julliard's avatar
Alexandre Julliard committed
3560 3561 3562
/*******************************************************************
 *         parse_option
 */
3563
static int parse_option( const char *opt )
Alexandre Julliard's avatar
Alexandre Julliard committed
3564
{
3565 3566 3567 3568 3569
    if (opt[0] != '-')
    {
        if (strchr( opt, '=' )) return set_make_variable( &cmdline_vars, opt );
        return 0;
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
3570 3571 3572
    switch(opt[1])
    {
    case 'f':
3573 3574
        if (opt[2]) output_makefile_name = opt + 2;
        break;
3575 3576 3577
    case 'R':
        relative_dir_mode = 1;
        break;
Alexandre Julliard's avatar
Alexandre Julliard committed
3578
    default:
3579
        fprintf( stderr, "Unknown option '%s'\n%s", opt, Usage );
Alexandre Julliard's avatar
Alexandre Julliard committed
3580 3581
        exit(1);
    }
3582
    return 1;
Alexandre Julliard's avatar
Alexandre Julliard committed
3583 3584 3585 3586 3587 3588 3589 3590
}


/*******************************************************************
 *         main
 */
int main( int argc, char *argv[] )
{
3591
    const char *makeflags = getenv( "MAKEFLAGS" );
3592
    int i, j;
Alexandre Julliard's avatar
Alexandre Julliard committed
3593

3594 3595
    if (makeflags) parse_makeflags( makeflags );

3596 3597
    i = 1;
    while (i < argc)
Alexandre Julliard's avatar
Alexandre Julliard committed
3598
    {
3599
        if (parse_option( argv[i] ))
3600 3601 3602 3603 3604 3605 3606
        {
            for (j = i; j < argc; j++) argv[j] = argv[j+1];
            argc--;
        }
        else i++;
    }

3607 3608 3609 3610 3611 3612
    if (relative_dir_mode)
    {
        char *relpath;

        if (argc != 3)
        {
3613
            fprintf( stderr, "Option -R needs two directories\n%s", Usage );
3614 3615 3616 3617 3618 3619 3620
            exit( 1 );
        }
        relpath = get_relative_path( argv[1], argv[2] );
        printf( "%s\n", relpath ? relpath : "." );
        exit( 0 );
    }

3621 3622 3623 3624 3625 3626 3627
    atexit( cleanup_files );
    signal( SIGTERM, exit_on_signal );
    signal( SIGINT, exit_on_signal );
#ifdef SIGHUP
    signal( SIGHUP, exit_on_signal );
#endif

3628 3629
    for (i = 0; i < HASH_SIZE; i++) list_init( &files[i] );

3630
    top_makefile = parse_makefile( NULL );
3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644

    target_flags = get_expanded_make_var_array( top_makefile, "TARGETFLAGS" );
    msvcrt_flags = get_expanded_make_var_array( top_makefile, "MSVCRTFLAGS" );
    dll_flags    = get_expanded_make_var_array( top_makefile, "DLLFLAGS" );
    extra_cflags = get_expanded_make_var_array( top_makefile, "EXTRACFLAGS" );
    cpp_flags    = get_expanded_make_var_array( top_makefile, "CPPFLAGS" );
    unwind_flags = get_expanded_make_var_array( top_makefile, "UNWINDFLAGS" );
    libs         = get_expanded_make_var_array( top_makefile, "LIBS" );

    root_src_dir = get_expanded_make_variable( top_makefile, "srcdir" );
    tools_dir    = get_expanded_make_variable( top_makefile, "TOOLSDIR" );
    tools_ext    = get_expanded_make_variable( top_makefile, "TOOLSEXT" );
    exe_ext      = get_expanded_make_variable( top_makefile, "EXEEXT" );
    man_ext      = get_expanded_make_variable( top_makefile, "api_manext" );
3645
    dll_ext      = (exe_ext && !strcmp( exe_ext, ".exe" )) ? "" : ".so";
3646 3647 3648 3649 3650
    crosstarget  = get_expanded_make_variable( top_makefile, "CROSSTARGET" );
    fontforge    = get_expanded_make_variable( top_makefile, "FONTFORGE" );
    convert      = get_expanded_make_variable( top_makefile, "CONVERT" );
    rsvg         = get_expanded_make_variable( top_makefile, "RSVG" );
    icotool      = get_expanded_make_variable( top_makefile, "ICOTOOL" );
3651
    dlltool      = get_expanded_make_variable( top_makefile, "DLLTOOL" );
3652
    msgfmt       = get_expanded_make_variable( top_makefile, "MSGFMT" );
3653
    ln_s         = get_expanded_make_variable( top_makefile, "LN_S" );
3654

3655
    if (root_src_dir && !strcmp( root_src_dir, "." )) root_src_dir = NULL;
3656
    if (tools_dir && !strcmp( tools_dir, "." )) tools_dir = NULL;
3657
    if (!exe_ext) exe_ext = "";
3658 3659 3660
    if (!tools_ext) tools_ext = "";
    if (!man_ext) man_ext = "3w";

3661 3662
    if (argc == 1)
    {
3663
        disabled_dirs = get_expanded_make_var_array( top_makefile, "DISABLED_SUBDIRS" );
3664 3665 3666 3667
        top_makefile->subdirs = get_expanded_make_var_array( top_makefile, "SUBDIRS" );
        top_makefile->submakes = xmalloc( top_makefile->subdirs.count * sizeof(*top_makefile->submakes) );

        for (i = 0; i < top_makefile->subdirs.count; i++)
3668
            top_makefile->submakes[i] = parse_makefile( top_makefile->subdirs.str[i] );
3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682

        load_sources( top_makefile );
        for (i = 0; i < top_makefile->subdirs.count; i++)
            load_sources( top_makefile->submakes[i] );

        for (i = 0; i < top_makefile->subdirs.count; i++)
            output_dependencies( top_makefile->submakes[i] );

        output_dependencies( top_makefile );
        return 0;
    }

    for (i = 1; i < argc; i++)
    {
3683
        struct makefile *make = parse_makefile( argv[i] );
3684 3685 3686
        load_sources( make );
        output_dependencies( make );
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
3687 3688
    return 0;
}