diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-23 22:59:48 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-23 22:59:48 +0200 |
commit | 79ed95777a2e407e172788366cd886f9fba60a32 (patch) | |
tree | 95a536936eab9828a65cce8d326ebf7a5adf725b /Makefile.am |
Intial skeleton of libsdw
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..5434b23 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,27 @@ +ACLOCAL_AMFLAGS = -I m4 + +pkgconfdir = $(libdir)/pkgconfig + +pkgconf_DATA = libsdw-@SDW_MAJOR_VERSION@.@SDW_MINOR_VERSION@.pc + +SUBDIRS = inc src build docs + +EXTRA_DIST = \ + autogen.sh \ + libsdw.pc.in \ + libsdw-zip.in \ + COPYING.LGPL \ + COPYING.MPL \ + INSTALL \ + NEWS \ + README + +distclean-local: + rm -rf *.cache *~ *.pc + +zip: install + sh libsdw-zip + +dist-hook: + git log --date=short --pretty="format:@%cd %an <%ae> [%H]%n%n%s%n%n%e%b" | sed -e "s|^\([^@]\)|\t\1|" -e "s|^@||" >$(distdir)/ChangeLog + |