3 # Update the dependencies in the programs main Makefile.in.
4 # Must be run in the programs/ directory of the Wine tree.
6 # Copyright 2003 Alexandre Julliard
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.
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.
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
25 my $makefiles = `find . -name Makefile.in -print`;
29 # Programs that we want to install in the bin directory too
50 # Programs that we don't want to install at all
57 foreach my $i (split(/\s/,$makefiles))
61 next if $i =~ /\/tests\
/Makefile.in/;
69 # hack to disable this program... the MKPROG_SKIP comment must appear
70 # at the very top of the Makefile.in
71 last if (/^\#\s*MKPROG_SKIP/);
73 if (/^MODULE\s*=\s*([a-zA-Z0-9_.]+)/)
76 next if ($module eq "none");
77 ($directories{$module} = $i) =~ s/^\.\/(.*)\/[^\
/]+$/$1/;
80 if (/^PROGRAMS\s*=((\s*[a-zA-Z0-9_.]+)+)/)
82 my @programs = split / /, $1;
83 foreach my $prog (@programs)
85 next unless $prog =~ /\.exe$/;
86 ($directories{$prog} = $i) =~ s/^\.\/(.*)\/[^\
/]+$/$1/;
94 open NEWMAKE
,">Makefile.in.new" or die "cannot create Makefile.in.new";
96 ################################################################
100 # Automatically generated by make_progs; DO NOT EDIT!!
102 TOPSRCDIR = \@top_srcdir\@
109 ################################################################
110 # output the subdirs list
112 # get rid of duplicates
114 foreach my $dir (sort values %directories) { $alldirs{$dir} = 1; }
116 print NEWMAKE
"SUBDIRS =";
117 foreach my $dir (sort keys %alldirs)
119 printf NEWMAKE
" \\\n\t%s", $dir;
122 print NEWMAKE
"\n\n# Sub-directories to run make install into\nINSTALLSUBDIRS =";
123 foreach my $dir (sort keys %alldirs)
125 next if $dont_install{$dir};
126 printf NEWMAKE
" \\\n\t%s", $dir;
129 print NEWMAKE
"\n\n# Programs to install in bin directory\nINSTALLPROGS =";
130 foreach my $dir (sort keys %alldirs)
132 printf NEWMAKE
" \\\n\t%s", $dir if $bin_install{$dir};
135 print NEWMAKE
"\n\n# Symlinks to apps that we want to run from inside the source tree\nSYMLINKS =";
136 foreach my $mod (sort keys %directories)
138 printf NEWMAKE
" \\\n\t%s\$(DLLEXT)", $mod;
141 ################################################################
142 # output the build and install targets
149 all: wineapploader winelauncher \$(SUBDIRS) \$(SYMLINKS)
151 wineapploader: wineapploader.in
152 sed -e 's,\@bindir\\\@,\$(bindir),g' \$(SRCDIR)/wineapploader.in >\$\@ || (\$(RM) \$\@ && false)
154 winelauncher: winelauncher.in
155 sed -e 's,\@bindir\\\@,\$(bindir),g' -e 's,\@libdir\\\@,\$(libdir),g' -e 's,\@dlldir\\\@,\$(dlldir),g' \$(SRCDIR)/winelauncher.in >\$\@ || (\$(RM) \$\@ && false)
157 # Rules for installation
159 .PHONY: install-apploader install-progs install-progs.so \$(INSTALLPROGS:%=%/__installprog__)
161 install-apploader: wineapploader dummy
162 \$(MKINSTALLDIRS) \$(bindir)
163 \$(INSTALL_SCRIPT) wineapploader \$(bindir)/wineapploader
165 \$(INSTALLPROGS:%=%/__installprog__): install-apploader
166 \$(RM) \$(bindir)/`dirname \$\@` && \$(LN) \$(bindir)/wineapploader \$(bindir)/`dirname \$\@`
168 install-progs.so: \$(INSTALLPROGS:%=%/__installprog__)
169 \$(RM) \$(bindir)/wineapploader
171 install-progs: # nothing to do here
173 install:: winelauncher install-progs\$(DLLEXT)
174 \$(MKINSTALLDIRS) \$(bindir)
175 \$(INSTALL_SCRIPT) winelauncher \$(bindir)/winelauncher
178 -cd \$(bindir) && \$(RM) wineapploader winelauncher \$(INSTALLPROGS)
182 \$(RM) wineapploader winelauncher \$(SYMLINKS)
186 check test:: \$(SUBDIRS:%=%/__test__)
190 ################################################################
191 # output the symlinks rules
193 print NEWMAKE
"# Rules for symlinks\n\n";
195 foreach my $mod (sort keys %directories)
197 printf NEWMAKE
"%s\$(DLLEXT)", $mod;
198 printf NEWMAKE
": %s/%s\$(DLLEXT)\n", $directories{$mod}, $mod;
199 printf NEWMAKE
"\t\$(RM) \$@ && \$(LN_S) %s/%s\$(DLLEXT) \$@\n\n", $directories{$mod}, $mod;
202 foreach my $mod (sort keys %directories)
204 printf NEWMAKE
"%s/%s\$(DLLEXT): %s\n", $directories{$mod}, $mod, $directories{$mod};
207 ################################################################
210 print NEWMAKE
"\n### Dependencies:\n";
213 rename "Makefile.in.new", "Makefile.in";
214 printf "Successfully updated Makefile.in\n";