1# .gitignore for libcoap 2 3# ignoring autogenerated files and directories by autoreconf 4INSTALL 5Makefile 6Makefile.in 7aclocal.m4 8ar-lib 9autom4te.cache/ 10coap_config.h* 11compile 12config.* 13configure 14debian/ 15depcomp 16install-sh 17libcoap-*.tar.bz2 18libtool 19ltmain.sh 20m4/ 21# warn about specific macros in the m4 directory if they missing 22!m4/ax_* 23missing 24stamp-h1 25 26# ignoring more files generated by the configure script or the make actions 27.libs/ 28libcoap*.la 29libcoap*.pc 30src/.deps/ 31src/.dirstamp 32src/.libs/ 33src/*.o 34src/*.lo 35 36# the doc/ folder 37doc/Doxyfile 38doc/Makefile.in 39doc/doxyfile.stamp 40doc/doxygen_sqlite3.db 41doc/html/ 42 43# the examples/ folder 44examples/.deps/ 45examples/*.o 46examples/coap-client 47examples/coap-rd 48examples/coap-server 49examples/coap-client.5 50examples/coap-client.txt 51examples/coap-rd.5 52examples/coap-rd.txt 53examples/coap-server.5 54examples/coap-server.txt 55 56# the include/ folder 57include/coap/coap.h 58 59# the tests/ folder 60tests/.deps 61tests/testdriver 62tests/*.o 63