diff options
author | Timothy Pearson <[email protected]> | 2014-12-27 08:13:20 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-12-27 08:13:20 -0600 |
commit | 9b92536e6c51b66406d593745a938975e226f95e (patch) | |
tree | a40b0066dc774827f602f5e372c2f53656007553 /src/Makefile.am | |
download | libr-9b92536e6c51b66406d593745a938975e226f95e.tar.gz libr-9b92536e6c51b66406d593745a938975e226f95e.zip |
Initial import
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..5fbf00b --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,39 @@ +libr_la_includedir = $(includedir)/libr +LIBTOOL_DEPS = @LIBTOOL_DEPS@ + +INCLUDES = \ + -D__LIBR_BACKEND_@BACKEND_NAME@__ \ + -D__LIBR_BUILD__ \ + @LIBGLADE_CFLAGS@ \ + @BACKEND_CFLAGS@ \ + @EXTRA_CFLAGS@ + +lib_LTLIBRARIES = \ + libr.la + +libr_la_SOURCES = \ + libr-@[email protected] \ + tempfiles.c \ + onecanvas.c \ + libr-icons.c \ + libr-i18n.c \ + libr-gtk.c \ + libr.c + +libr_la_include_HEADERS = \ + gettext.h \ + libr-icons.h \ + libr-i18n.h \ + libr-gtk.h \ + libr.h + +libr_la_LIBADD = \ + @BACKEND_LIBS@ \ + @EXTRA_LIBS@ + +# If not in a fakeroot environment then run ldconfig +install: install-am + @if [ ! -n "${FAKEROOTKEY}" ]; then \ + echo "Regenerating system dependencies..."; \ + ldconfig; \ + fi |