3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 06:03:23 +00:00

renamed z3.dll to libz3.dll

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-26 12:33:54 -07:00
parent ad7f8c9187
commit 2bdcc36526
3 changed files with 3 additions and 6 deletions

View file

@ -347,10 +347,7 @@ class DLLComponent(Component):
global _Name2Component
Component.mk_makefile(self, out)
# generate rule for (SO_EXT)
if IS_WINDOW:
dllfile = '%s$(SO_EXT)' % self.dll_name
else:
dllfile = 'lib%s$(SO_EXT)' % self.dll_name
dllfile = '%s$(SO_EXT)' % self.dll_name
out.write('%s:' % dllfile)
deps = sort_components(self.deps)
objs = []