diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-04-23 02:42:35 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-04-23 02:42:35 +0200 |
commit | a5e9f3d26f887deb451a3ea086e52266c117aa0a (patch) | |
tree | d9ebd46faa95ad6d27ae0ce2ef3c506bac338516 /client/Makefile | |
parent | d2c392d44839baaefa48f4a38060be648d3415fb (diff) |
Restructures birdc and birdcl to merge duplicated code.
The BIRD client code is restructured that most of the code (including
main function) is shared in client.c, while birdc.c and birdcl.c contain
just I/O-specific callbacks. This removes all duplicated code from
variant-specific files.
Diffstat (limited to 'client/Makefile')
-rw-r--r-- | client/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/Makefile b/client/Makefile index 8c2f91e0..a1578766 100644 --- a/client/Makefile +++ b/client/Makefile @@ -1,4 +1,4 @@ -source=commands.c util.c common.c +source=commands.c util.c client.c root-rel=../ dir-name=client |