mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-12 00:53:05 +01:00
13 lines
447 B
Makefile
13 lines
447 B
Makefile
## audacious-vgmstream script
|
|
|
|
lib_LTLIBRARIES = libvgmstream.la
|
|
|
|
libdir = @plugindir@/@INPUT_PLUGIN_DIR@
|
|
|
|
AM_MAKEFLAGS=-f Makefile.unix
|
|
AM_CXXFLAGS = -Wall -std=c++11 -fpermissive @CXXFLAGS@ -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/ext_includes/ @GTK_CFLAGS@
|
|
AM_LIBS =
|
|
|
|
libvgmstream_la_LDFLAGS = -no-undefined -module -avoid-version -export-symbols-regex get_plugin_info ../src/libvgmstream.la
|
|
libvgmstream_la_SOURCES = plugin.cc vfs.cc
|