mirror of
https://gitlab.com/openconnect/ocserv.git
synced 2026-02-10 16:57:00 +08:00
28 lines
430 B
Makefile
28 lines
430 B
Makefile
EXTRA_DIST = m4/lib-link.m4 LICENSE
|
|
|
|
SUBDIRS = gl libopts src doc tests
|
|
|
|
ACLOCAL_AMFLAGS = -I gl/m4 -I libopts/m4 -I m4
|
|
|
|
gl:
|
|
gnulib-tool --add-import --lgpl=2
|
|
|
|
clang:
|
|
make clean
|
|
scan-build ./configure
|
|
rm -rf scan.tmp
|
|
scan-build -o scan.tmp make
|
|
|
|
ctags:
|
|
find . -type f -name "*.[ch]*" | xargs @CTAGS@
|
|
|
|
cscope:
|
|
@CSCOPE@ -b -R
|
|
|
|
cref: ctags cscope
|
|
|
|
dist-hook:
|
|
cd $(distdir)/src/ && for i in *.def;do \
|
|
autogen $$i; \
|
|
done
|