blob: 56e70bb790e15c08f50cc164615e6482d152d14e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src include fdi swig dev tools docs
DISTCHECK_CONFIGURE_FLAGS = --enable-dev-tools
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libimobiledevice-1.0.pc
EXTRA_DIST= docs
docs:
rm -fr docs
doxygen doxygen.cfg
indent:
indent -kr -ut -ts4 -l120 src/*.c src/*.h dev/*.c
|