diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-04-19 13:59:08 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-04-19 13:59:08 +0200 |
commit | d2c392d44839baaefa48f4a38060be648d3415fb (patch) | |
tree | 7a7501d9cb55bbb732dfd06e8ffd14dbcda97bea /client/Makefile | |
parent | 568d9c9faeab70951d8e9bfea521e1b38a9a3d1c (diff) |
Removes unnecessary client subdirectories and updates buildsystem.
Renames some files:
birdc/client.c -> birdc.c
birdcl/client.c -> birdcl.c
client_common.c -> common.c
Diffstat (limited to 'client/Makefile')
-rw-r--r-- | client/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/client/Makefile b/client/Makefile index 3568833e..8c2f91e0 100644 --- a/client/Makefile +++ b/client/Makefile @@ -1,5 +1,11 @@ -source=commands.c util.c client_common.c +source=commands.c util.c common.c root-rel=../ dir-name=client +clients := $(client) birdcl + +source-dep := $(source) $(addsuffix .c,$(clients)) + +subdir: $(addsuffix .o,$(clients)) + include ../Rules |