diff options
author | David Robillard <d@drobilla.net> | 2011-01-25 21:41:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-01-25 21:41:14 +0000 |
commit | 111f9ae3232e986222a2ef41b4af0d083f4f797e (patch) | |
tree | da691482794c2d31bdd74e763c718a5fd8b63400 /src | |
parent | 204428cdeed5653c876c9580c0a2589b5427e6ae (diff) | |
download | serd-111f9ae3232e986222a2ef41b4af0d083f4f797e.tar.gz serd-111f9ae3232e986222a2ef41b4af0d083f4f797e.tar.bz2 serd-111f9ae3232e986222a2ef41b4af0d083f4f797e.zip |
Add `amalgamate' waf target for building single source file distribution.
git-svn-id: http://svn.drobilla.net/serd/trunk@78 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'src')
-rw-r--r-- | src/env.c | 2 | ||||
-rw-r--r-- | src/node.c | 2 | ||||
-rw-r--r-- | src/reader.c | 2 | ||||
-rw-r--r-- | src/uri.c | 2 | ||||
-rw-r--r-- | src/writer.c | 2 |
5 files changed, 10 insertions, 0 deletions
@@ -15,6 +15,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +/** @file env.c */ + #include <assert.h> #include <stdbool.h> #include <stdlib.h> @@ -15,6 +15,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +/** @file node.c */ + #include <stdlib.h> #include <string.h> diff --git a/src/reader.c b/src/reader.c index 913f3197..226c359a 100644 --- a/src/reader.c +++ b/src/reader.c @@ -15,6 +15,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +/** @file reader.c */ + #include <assert.h> #include <stdarg.h> #include <stdbool.h> @@ -15,6 +15,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +/** @file uri.c */ + #include <assert.h> #include <stdlib.h> #include <string.h> diff --git a/src/writer.c b/src/writer.c index d06e906c..5f08df62 100644 --- a/src/writer.c +++ b/src/writer.c @@ -15,6 +15,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +/** @file writer.c */ + #include <assert.h> #include <stdio.h> #include <stdlib.h> |