diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..544ef5b --- /dev/null +++ b/Makefile.am @@ -0,0 +1,34 @@ +## Process this file with automake to produce Makefile.in + +# Copyright 2013 Endless Mobile, Inc. + +## ----------- +## Makefile.am +## ----------- +## Please keep this file well-commented. + +# Our Autoconf macros are kept in the m4/ directory +ACLOCAL_AMFLAGS = -I m4 + +# Extra files to distribute in the tarball +EXTRA_DIST = @EOS_SDK_API_NAME@.pc.in + +AM_CFLAGS = @STRICT_CFLAGS@ + +DISTCLEANFILES = + +# # # LIBRARY # # # + +# Main Open Endless SDK library +include $(top_srcdir)/endless/Makefile.am + +# Public header files +endlessincludedir = $(includedir)/@EOS_SDK_API_NAME@ +nobase_endlessinclude_HEADERS = \ + $(endless_public_installed_headers) \ + $(endless_private_installed_headers) + +# Pkg-config file +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = @EOS_SDK_API_NAME@.pc +DISTCLEANFILES += @EOS_SDK_API_NAME@.pc |