You've already forked libimobiledevice
mirror of
https://github.com/encounter/libimobiledevice.git
synced 2026-03-30 11:18:43 -07:00
16 lines
372 B
Makefile
16 lines
372 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
SUBDIRS = common src include $(CYTHON_SUB) tools docs
|
|
|
|
EXTRA_DIST = docs
|
|
|
|
docs/html: $(top_builddir)/doxygen.cfg $(top_srcdir)/src/*.c $(top_srcdir)/src/*.h $(top_srcdir)/include/libimobiledevice/*.h
|
|
rm -rf docs/html
|
|
doxygen doxygen.cfg
|
|
|
|
docs: doxygen.cfg docs/html
|
|
|
|
indent:
|
|
indent -kr -ut -ts4 -l120 src/*.c src/*.h
|
|
|