diff options
author | David Robillard <d@drobilla.net> | 2006-06-06 20:20:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-06 20:20:33 +0000 |
commit | 7fd4168fe8581e46f4ee35cc182db6220b6eed04 (patch) | |
tree | 403d603debb6304193f60c2adda8a53863c45e04 /examples/plugins/Makefile.am | |
parent | e9a163310bc7b0a607d89ed5cb70c6bba99e919d (diff) | |
download | lilv-7fd4168fe8581e46f4ee35cc182db6220b6eed04.tar.gz lilv-7fd4168fe8581e46f4ee35cc182db6220b6eed04.tar.bz2 lilv-7fd4168fe8581e46f4ee35cc182db6220b6eed04.zip |
Moved libslv2 into it's own subdirectory
git-svn-id: http://svn.drobilla.net/lad/libslv2@4 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'examples/plugins/Makefile.am')
-rw-r--r-- | examples/plugins/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/plugins/Makefile.am b/examples/plugins/Makefile.am new file mode 100644 index 0000000..8044bc9 --- /dev/null +++ b/examples/plugins/Makefile.am @@ -0,0 +1,24 @@ +#AM_CFLAGS = -I$(top_srcdir)/include +#AM_LDFLAGS = -module -avoidversion -Wc,-nostartfiles +# +#plugindir = @umpdir@ +# +#plugin_LTLIBRARIES = \ +# test_plugin.la +# +## Stolen from swh-plugins, makes stupid libtool versions go away +#install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES) +# mkdir -p @umpdir@ +# list='$(plugin_LTLIBRARIES)'; \ +# for file in $$list; do \ +# sofile=`basename $$file .la`.so; \ +# $(INSTALL_PROGRAM) .libs/$$sofile @umpdir@; \ +# done +# +#uninstall-pluginLTLIBRARIES: $(plugin_LTLIBRARIES) +# list='$(plugin_LTLIBRARIES)'; \ +# for file in $$list; do \ +# sofile=`basename $$file .la`.so; \ +# rm -f @umpdir@/$$sofile; \ +# done +# |