Fixed implib target broken by previous change.
This commit is contained in:
parent
285ad721f4
commit
a61caabaf2
|
@ -375,8 +375,6 @@ symlinks.so: $(SYMLINKS_SO)
|
|||
|
||||
symlinks: $(BUILDSUBDIRS)
|
||||
|
||||
implib: $(ALL_IMPORT_LIBS)
|
||||
|
||||
|
||||
# Map symlink name to the corresponding library
|
||||
|
||||
|
@ -1027,6 +1025,8 @@ ALL_IMPORT_LIBS = \
|
|||
libdxguid.a \
|
||||
libuuid.a
|
||||
|
||||
implib: $(ALL_IMPORT_LIBS)
|
||||
|
||||
libadvapi32.def: advapi32/advapi32.spec.def
|
||||
$(RM) $@ && $(LN_S) advapi32/advapi32.spec.def $@
|
||||
libadvapi32.a: advapi32/advapi32.spec.def
|
||||
|
|
|
@ -184,8 +184,6 @@ symlinks.so: \$(SYMLINKS_SO)
|
|||
|
||||
symlinks: \$(BUILDSUBDIRS)
|
||||
|
||||
implib: \$(ALL_IMPORT_LIBS)
|
||||
|
||||
EOF
|
||||
|
||||
################################################################
|
||||
|
@ -239,6 +237,7 @@ foreach my $mod (sort keys %implib_dirs)
|
|||
printf NEWMAKE " \\\n\t%s", $mod;
|
||||
}
|
||||
print NEWMAKE "\n\n";
|
||||
print NEWMAKE "implib: \$(ALL_IMPORT_LIBS)\n\n";
|
||||
|
||||
foreach my $mod (sort @implibs)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue