X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=HACKING;h=511a88060b25376e5422a9fb0d6c7e3a724080f1;hb=2d8a83d2269d9f88032f4bac2a12cc1d156741c1;hp=5d8badcbb5d7d012f5452d04d5fe119aa6401269;hpb=afc568c481d9afffd6ba096af8f5723eb13dac91;p=oweals%2Fgnunet.git diff --git a/HACKING b/HACKING index 5d8badcbb..511a88060 100644 --- a/HACKING +++ b/HACKING @@ -6,7 +6,7 @@ include files: - _plugin: plugin definition - _protocol: structs used in network protocol - exceptions: - * GNUNET_config.h --- generated // FIXME: decapitalize + * gnunet_config.h --- generated * platform.h --- first included * plibc.h --- external library * gnunet_common.h --- fundamental routines @@ -61,9 +61,9 @@ gnunet-service-transport gnunet-service-core gnunet-daemon-hostlist gnunet-daemon-topology -gnunet-service-datastore gnunet-service-statistics -gnunet-service-dv +gnunet-service-datastore +gnunet-service-datacache gnunet-service-dht gnunet-service-fs (or just lib?) @@ -80,3 +80,18 @@ Coding style: instead of int i,j; + + + +Build-system: + +If you have code that is likely not to compile or build rules you might want to not +trigger for most developers, use "if HAVE_EXPERIMENTAL" in your Makefile.am. Then +it is OK to (temporarily) add non-compiling (or known-to-not-port) code. + +If you want to compile all testcases but NOT run them, run configure with the +--enable-test-suppression option. + +If you want to obtain code coverage results, run configure with the +--enable-coverage option and run the coverage.sh script in contrib/. +