diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-05-24 13:15:24 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-05-24 13:15:24 +0800 |
commit | 545cc62671235ac98b8750665983882e26550da7 (patch) | |
tree | 0d3d8e9fa2fa758e791d2eaa96382479453e21cb /Makefile.in | |
parent | 331d4a714f65772e384e15ff55b850a6e9e6786b (diff) |
Add linter for #ifdef
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index aaf7b3b..76379d2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -236,7 +236,7 @@ $(STATIC_LTC): $(OPTION_HEADERS) $(STATIC_LTM): $(OPTION_HEADERS) $(MAKE) -C libtommath -.PHONY : clean sizes thisclean distclean tidy ltc-clean ltm-clean +.PHONY : clean sizes thisclean distclean tidy ltc-clean ltm-clean lint ltc-clean: $(MAKE) -C libtomcrypt clean @@ -262,6 +262,9 @@ distclean: clean tidy tidy: -rm -f *~ *.gcov */*~ +lint: + cd $(srcdir); ./dropbear_lint.sh + ## Fuzzing targets # list of fuzz targets |