-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathMakefile.am
22 lines (18 loc) · 887 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ACLOCAL_AMFLAGS = -I scripts
EXTRA_DIST = README autogen.sh LICENSE.OpenSSL
SUBDIRS = scripts platform src include tools help
doxygen:
doxygen help/doxygen/DoxyFile
upload: dist
@echo "######## Maintainer only ##########";
@echo "building files for upload and scp libexosip2-X.X.X.tar.gz [email protected]:/releases/exosip";
@echo "building: $(PACKAGE)-$(VERSION).tar.gz.sig";
gpg -b $(PACKAGE)-$(VERSION).tar.gz
indent:
@type clang-format --version >/dev/null 2>&1 || clang-format -i $(top_srcdir)/include/eXosip2/*.h
@type clang-format --version >/dev/null 2>&1 || clang-format -i $(top_srcdir)/src/*.h
@type clang-format --version >/dev/null 2>&1 || clang-format -i $(top_srcdir)/src/*.c
@type clang-format --version >/dev/null 2>&1 || clang-format -i $(top_srcdir)/tools/*.c
rm -rf $(top_srcdir)/*/*/*.h~
rm -rf $(top_srcdir)/*/*.h~
rm -rf $(top_srcdir)/*/*.c~