aboutsummaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-07-28 12:00:34 +0000
committerChristian Grothoff <christian@grothoff.org>2010-07-28 12:00:34 +0000
commite3dca1bf40ac8d8a884c261045ad1e9cade49a15 (patch)
tree9db4cf6a2dcf5716d2d1548cab0d0d9922443c6a /HACKING
parent8f4f36517e4220ca5539008cd19cb3b9a40f6499 (diff)
downloadgnunet-e3dca1bf40ac8d8a884c261045ad1e9cade49a15.tar.gz
gnunet-e3dca1bf40ac8d8a884c261045ad1e9cade49a15.zip
fixes to build
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING15
1 files changed, 15 insertions, 0 deletions
diff --git a/HACKING b/HACKING
index c24e6ccee..511a88060 100644
--- a/HACKING
+++ b/HACKING
@@ -80,3 +80,18 @@ Coding style:
80 instead of 80 instead of
81 81
82 int i,j; 82 int i,j;
83
84
85
86Build-system:
87
88If you have code that is likely not to compile or build rules you might want to not
89trigger for most developers, use "if HAVE_EXPERIMENTAL" in your Makefile.am. Then
90it is OK to (temporarily) add non-compiling (or known-to-not-port) code.
91
92If you want to compile all testcases but NOT run them, run configure with the
93--enable-test-suppression option.
94
95If you want to obtain code coverage results, run configure with the
96--enable-coverage option and run the coverage.sh script in contrib/.
97