winedbg: Move gdb command line handling.
[wine] / programs / make_progs
1 #!/usr/bin/perl -w
2 #
3 # Update the dependencies in the programs main Makefile.in.
4 # Must be run in the programs/ directory of the Wine tree.
5 #
6 # Copyright 2003 Alexandre Julliard
7 #
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
12 #
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21 #
22
23 use strict;
24
25 my $makefiles = `find . -name Makefile.in -print`;
26
27 my %directories = ();
28
29 # Programs that we want to install in the bin directory too
30 my %bin_install =
31 (
32   "msiexec" => 1,
33   "notepad" => 1,
34   "progman" => 1,
35   "regedit" => 1,
36   "regsvr32" => 1,
37   "uninstaller" => 1,
38   "wcmd" => 1,
39   "wineboot" => 1,
40   "winebrowser" => 1,
41   "winecfg" => 1,
42   "wineconsole" => 1,
43   "winedbg" => 1,
44   "winefile" => 1,
45   "winemine" => 1,
46   "winepath" => 1,
47   "winhelp" => 1,
48 );
49
50 # Programs that we don't want to install at all
51 my %dont_install =
52 (
53   "cmdlgtst" => 1,
54   "view" => 1,
55   "winetest" => 1,
56 );
57
58 foreach my $i (split(/\s/,$makefiles))
59 {
60     my $module;
61
62     next if $i =~ /\/tests\/Makefile.in/;
63
64     open MAKE,$i;
65
66     $module = undef;
67     while (<MAKE>)
68     {
69         chop;
70         # hack to disable this program... the MKPROG_SKIP comment must appear
71         # at the very top of the Makefile.in
72         last if (/^\#\s*MKPROG_SKIP/);
73
74         if (/^MODULE\s*=\s*([a-zA-Z0-9_.]+)/)
75         {
76             $module = $1;
77             next if ($module eq "none");
78             ($directories{$module} = $i) =~ s/^\.\/(.*)\/[^\/]+$/$1/;
79             last;
80         }
81         if (/^PROGRAMS\s*=((\s*[a-zA-Z0-9_.]+)+)/)
82         {
83             my @programs = split / /, $1;
84             foreach my $prog (@programs)
85             {
86                 next unless $prog =~ /\.exe$/;
87                 ($directories{$prog} = $i) =~ s/^\.\/(.*)\/[^\/]+$/$1/;
88             }
89             last;
90         }
91     }
92     close MAKE;
93 }
94
95 open NEWMAKE,">Makefile.in.new" or die "cannot create Makefile.in.new";
96
97 ################################################################
98 # makefile header
99
100 print NEWMAKE <<EOF;
101 # Automatically generated by make_progs; DO NOT EDIT!!
102
103 TOPSRCDIR = \@top_srcdir\@
104 TOPOBJDIR = ..
105 SRCDIR    = \@srcdir\@
106 VPATH     = \@srcdir\@
107
108 EOF
109
110 ################################################################
111 # output the subdirs list
112
113 # get rid of duplicates
114 my %alldirs = ();
115 foreach my $dir (sort values %directories) { $alldirs{$dir} = 1; }
116
117 print NEWMAKE "SUBDIRS =";
118 foreach my $dir (sort keys %alldirs)
119 {
120     printf NEWMAKE " \\\n\t%s", $dir;
121 }
122
123 print NEWMAKE "\n\n# Sub-directories to run make install into\nINSTALLSUBDIRS =";
124 foreach my $dir (sort keys %alldirs)
125 {
126     next if $dont_install{$dir};
127     printf NEWMAKE " \\\n\t%s", $dir;
128 }
129
130 print NEWMAKE "\n\n# Programs to install in bin directory\nINSTALLPROGS =";
131 foreach my $dir (sort keys %alldirs)
132 {
133     printf NEWMAKE " \\\n\t%s", $dir if $bin_install{$dir};
134 }
135
136 print NEWMAKE "\n\n# Symlinks to apps that we want to run from inside the source tree\nSYMLINKS =";
137 foreach my $mod (sort keys %directories)
138 {
139     printf NEWMAKE " \\\n\t%s\$(DLLEXT)", $mod;
140 }
141
142 ################################################################
143 # output the build and install targets
144
145 print NEWMAKE <<EOF;
146
147
148 \@MAKE_RULES\@
149
150 all: wineapploader winelauncher \$(SUBDIRS) \$(SYMLINKS)
151
152 wineapploader: wineapploader.in
153         sed -e 's,\@bindir\\\@,\$(bindir),g' \$(SRCDIR)/wineapploader.in >\$\@ || (\$(RM) \$\@ && false)
154
155 winelauncher: winelauncher.in
156         sed -e 's,\@bindir\\\@,\$(bindir),g' -e 's,\@libdir\\\@,\$(libdir),g' -e 's,\@dlldir\\\@,\$(dlldir),g' \$(SRCDIR)/winelauncher.in >\$\@ || (\$(RM) \$\@ && false)
157
158 # Rules for installation
159
160 .PHONY: install-apploader install-progs install-progs.so \$(INSTALLPROGS:%=%/__installprog__)
161
162 install-apploader: wineapploader dummy
163         \$(MKINSTALLDIRS) \$(DESTDIR)\$(bindir)
164         \$(INSTALL_SCRIPT) wineapploader \$(DESTDIR)\$(bindir)/wineapploader
165
166 \$(INSTALLPROGS:%=%/__installprog__): install-apploader
167         \$(RM) \$(DESTDIR)\$(bindir)/`dirname \$\@` && \$(LN) \$(DESTDIR)\$(bindir)/wineapploader \$(DESTDIR)\$(bindir)/`dirname \$\@`
168
169 install-progs.so: \$(INSTALLPROGS:%=%/__installprog__)
170         \$(RM) \$(DESTDIR)\$(bindir)/wineapploader
171
172 install-progs: # nothing to do here
173
174 install:: winelauncher install-progs\$(DLLEXT)
175         \$(MKINSTALLDIRS) \$(DESTDIR)\$(bindir)
176         \$(INSTALL_SCRIPT) winelauncher \$(DESTDIR)\$(bindir)/winelauncher
177
178 uninstall::
179         -cd \$(DESTDIR)\$(bindir) && \$(RM) wineapploader winelauncher \$(INSTALLPROGS)
180         -rmdir \$(DESTDIR)\$(dlldir)
181
182 clean::
183         \$(RM) wineapploader winelauncher \$(SYMLINKS)
184
185 # Rules for testing
186
187 check test:: \$(SUBDIRS:%=%/__test__)
188
189 EOF
190
191 ################################################################
192 # output the symlinks rules
193
194 print NEWMAKE "# Rules for symlinks\n\n";
195
196 foreach my $mod (sort keys %directories)
197 {
198     printf NEWMAKE "%s\$(DLLEXT)", $mod;
199     printf NEWMAKE ": %s/%s\$(DLLEXT)\n", $directories{$mod}, $mod;
200     printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s\$(DLLEXT) \$@\n\n", $directories{$mod}, $mod;
201 }
202
203 foreach my $mod (sort keys %directories)
204 {
205     printf NEWMAKE "%s/%s\$(DLLEXT): %s\n", $directories{$mod}, $mod, $directories{$mod};
206 }
207
208 ################################################################
209 # makefile trailer
210
211 print NEWMAKE "\n### Dependencies:\n";
212
213 close NEWMAKE;
214 rename "Makefile.in.new", "Makefile.in";
215 printf "Successfully updated Makefile.in\n";