X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=am%2Ffooter.mk;h=25fae74ee39caf0a6d57bee1aa0f0984a42ca740;hb=edb2c7a3bdc2405edf6fd9d6358e0551125f4d1b;hp=90a1f9a179b3b263eeb58d9073fee2991a2ffc7d;hpb=12e121a081a78a231ac700b100db862c4439ad0e;p=apps%2Fmadtty.git diff --git a/am/footer.mk b/am/footer.mk index 90a1f9a..25fae74 100644 --- a/am/footer.mk +++ b/am/footer.mk @@ -61,14 +61,16 @@ install-LIBRARIES/%:: $(if $($*dir),$(INSTALL_DATA) $($*_LIBRARIES:=.so*) $(DESTDIR)$($*dir)) define CLASS_LIBRARIES_tpl - all:: $1.so$$(if $$($1_VERSION),.$$($1_VERSION)) - install-LIBRARIES/$2:: $1.so$$(if $$($1_VERSION),.$$($1_VERSION)) + all:: $1.so$3 + install-LIBRARIES/$2:: $1.so$3 install:: install-LIBRARIES/$2 - $1.so$$(if $$($1_VERSION),.$$($1_VERSION)): $$(call deps_create,$$($1_SOURCES),$(_cobjs)/$1) + $1.so$3: $$(call deps_create,$$($1_SOURCES),$(_cobjs)/$1) $(CC) $$(CFLAGS) $$($1_CPPFLAGS) -fPIC -shared -o $$@ $$(filter %.o,$$^) \ $$(LDFLAGS) $$($1_LDFLAGS) $$($1_LIBADD) + $$(if $$(word 2,$$(subst ., ,$3)),ln -sf $$@ $1.so.$$(word 1,$$(subst ., ,$3))) + $$(if $$($1_VERSION), ln -sf $$@ $1.so) $$(eval $$(call RULE_C_tpl,$1,-fPIC)) @@ -76,7 +78,8 @@ define CLASS_LIBRARIES_tpl $(RM) $1.so* endef $(foreach v,$(filter %_LIBRARIES,$(.VARIABLES)), \ - $(foreach x,$($v),$(eval $(call CLASS_LIBRARIES_tpl,$x,$(v:_LIBRARIES=))))) + $(foreach x,$($v),$(eval $(call CLASS_LIBRARIES_tpl,$x,$(v:_LIBRARIES=),$(...\ + ...)$(if $($x_VERSION),.$($x_VERSION)))))) ##