2009-12-20 20:14:41 +01:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2010-04-07 16:37:19 +02:00
|
|
|
AM_CFLAGS = $(LIBNFC_CFLAGS)
|
|
|
|
|
2011-09-30 13:33:31 +02:00
|
|
|
SUBDIRS = libnfc utils examples include contrib cmake test
|
2009-05-04 10:00:08 +02:00
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = libnfc.pc
|
|
|
|
|
2011-02-07 13:34:13 +01:00
|
|
|
EXTRA_DIST = \
|
|
|
|
CMakeLists.txt \
|
|
|
|
Doxyfile \
|
2013-02-14 15:27:10 +01:00
|
|
|
README-Windows.txt \
|
|
|
|
libnfc.conf.sample
|
2011-02-07 13:34:13 +01:00
|
|
|
|
2011-09-22 15:03:47 +02:00
|
|
|
CLEANFILES = Doxygen.log coverage.info libnfc.pc
|
2009-10-20 12:19:31 +02:00
|
|
|
|
2011-02-26 01:21:27 +01:00
|
|
|
clean-local: clean-local-doc clean-local-coverage
|
|
|
|
|
2012-05-29 17:56:02 +02:00
|
|
|
.PHONY: clean-local-coverage clean-local-doc doc style
|
2011-02-26 01:21:27 +01:00
|
|
|
clean-local-coverage:
|
|
|
|
-rm -rf coverage
|
|
|
|
|
|
|
|
clean-local-doc:
|
2009-10-20 12:19:31 +02:00
|
|
|
rm -rf doc
|
|
|
|
|
2010-01-10 19:14:26 +01:00
|
|
|
doc : Doxyfile
|
2009-10-20 12:19:31 +02:00
|
|
|
@DOXYGEN@ $(builddir)/Doxyfile
|
|
|
|
|
2010-11-17 11:14:26 +01:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS="--with-drivers=all"
|
|
|
|
|
2012-05-29 17:56:02 +02:00
|
|
|
style:
|
|
|
|
find . -name "*.[ch]" -exec perl -pi -e 's/[ \t]+$$//' {} \;
|
|
|
|
find . -name "*.[ch]" -exec astyle --formatted --mode=c --suffix=none \
|
|
|
|
--indent=spaces=2 --indent-switches --indent-preprocessor \
|
|
|
|
--keep-one-line-blocks --max-instatement-indent=60 \
|
|
|
|
--brackets=linux --pad-oper --unpad-paren --pad-header \
|
|
|
|
--align-pointer=name {} \;
|
2013-04-05 11:12:39 +02:00
|
|
|
|
|
|
|
cppcheck:
|
|
|
|
cppcheck --quiet \
|
|
|
|
-I include -I libnfc -I libnfc/buses -I libnfc/chips -I libnfc/drivers \
|
|
|
|
--check-config .
|
|
|
|
cppcheck --quiet --enable=all --std=posix --std=c99 \
|
|
|
|
-I include -I libnfc -I libnfc/buses -I libnfc/chips -I libnfc/drivers \
|
|
|
|
-DLOG -D__linux__ \
|
|
|
|
-DDRIVER_PN53X_USB_ENABLED -DDRIVER_ACR122_PCSC_ENABLED \
|
|
|
|
-DDRIVER_ACR122_USB_ENABLED -DDRIVER_ACR122S_ENABLED \
|
|
|
|
-DDRIVER_PN532_UART_ENABLED -DDRIVER_ARYGON_ENABLED \
|
2013-04-05 11:42:57 +02:00
|
|
|
-DDRIVER_PN532_SPI_ENABLED \
|
2013-04-05 11:12:39 +02:00
|
|
|
--force --inconclusive .
|