Commit 5318cfe088ad4ddac14e2584361b0b90046f766c

Authored by Perry Werneck
1 parent 1eb6b689
Exists in master and in 1 other branch develop

Updating install options & README.md.

Showing 1 changed file with 11 additions and 2 deletions   Show diff stats
Makefile.in
... ... @@ -221,8 +221,12 @@ $(BINRLS)/static/$(LIBNAME).a: \
221 221 #---[ Install Targets ]------------------------------------------------------------------
222 222  
223 223 install: \
224   - $(BINRLS)/$(LIBNAME)@DLLEXT@ \
225   - $(BINRLS)/static/$(LIBNAME).a
  224 + install-shared \
  225 + install-static \
  226 + install-dev
  227 +
  228 +install-shared: \
  229 + $(BINRLS)/$(LIBNAME)@DLLEXT@
226 230  
227 231 # Install library
228 232 @mkdir -p $(DESTDIR)$(libdir)
... ... @@ -240,11 +244,16 @@ install: \
240 244 $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@ \
241 245 $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@
242 246  
  247 +install-static: \
  248 + $(BINRLS)/static/$(LIBNAME).a
  249 +
243 250 # Install static library
244 251 @$(INSTALL_DATA) \
245 252 $(BINRLS)/static/$(LIBNAME).a \
246 253 $(DESTDIR)$(libdir)
247 254  
  255 +install-dev:
  256 +
248 257 # Install SDK
249 258 @$(INSTALL_DATA) \
250 259 ../include/$(LIBNAME).h \
... ...