Makefile.am 568 B

12345678910111213141516171819202122
  1. AUTOMAKE_OPTIONS = foreign
  2. ACLOCAL_AMFLAGS = -I m4
  3. SUBDIRS = 3rd_party common src include $(CYTHON_SUB) tools docs
  4. EXTRA_DIST = \
  5. docs \
  6. README.md \
  7. git-version-gen
  8. dist-hook:
  9. @if ! git diff --quiet; then echo "Uncommitted changes present; not releasing"; exit 1; fi
  10. echo $(VERSION) > $(distdir)/.tarball-version
  11. docs/html: $(top_builddir)/doxygen.cfg $(top_srcdir)/src/*.c $(top_srcdir)/src/*.h $(top_srcdir)/include/libimobiledevice/*.h
  12. rm -rf docs/html
  13. doxygen doxygen.cfg
  14. docs: doxygen.cfg docs/html
  15. indent:
  16. indent -kr -ut -ts4 -l120 src/*.c src/*.h