Commit fb05ad6a7c8959eae295bab0bb1f29186025cfb0
1 parent
25b7fe8c
Exists in
master
and in
3 other branches
Atualizando processo de instalação
Showing
1 changed file
with
17 additions
and
0 deletions
Show diff stats
Makefile.in
@@ -129,6 +129,23 @@ $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ | @@ -129,6 +129,23 @@ $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ | ||
129 | @$(MKDIR) `dirname $@` | 129 | @$(MKDIR) `dirname $@` |
130 | @$(LD) -shared -Wl,-soname,$(@F) $(LDFLAGS) -o $@ $^ $(LIBS) | 130 | @$(LD) -shared -Wl,-soname,$(@F) $(LDFLAGS) -o $@ $^ $(LIBS) |
131 | 131 | ||
132 | +install: \ | ||
133 | + $(BINRLS)/$(LIBNAME) | ||
134 | + | ||
135 | + @$(MKDIR) $(DESTDIR)$(libdir) | ||
136 | + | ||
137 | + @$(INSTALL_PROGRAM) \ | ||
138 | + $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ | ||
139 | + $(DESTDIR)$(libdir) | ||
140 | + | ||
141 | + @$(LN_S) -f \ | ||
142 | + $(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ | ||
143 | + $(DESTDIR)$(libdir)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@ | ||
144 | + | ||
145 | + @$(LN_S) -f \ | ||
146 | + $(LIBNAME).@PACKAGE_MAJOR_VERSION@ \ | ||
147 | + $(DESTDIR)$(libdir)/$(LIBNAME) | ||
148 | + | ||
132 | #---[ Debug Targets ]-------------------------------------------------------------------- | 149 | #---[ Debug Targets ]-------------------------------------------------------------------- |
133 | 150 | ||
134 | Debug: \ | 151 | Debug: \ |