a5e9f3d26f
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.
11 lines
198 B
Makefile
11 lines
198 B
Makefile
source=commands.c util.c client.c
|
|
root-rel=../
|
|
dir-name=client
|
|
|
|
clients := $(client) birdcl
|
|
|
|
source-dep := $(source) $(addsuffix .c,$(clients))
|
|
|
|
subdir: $(addsuffix .o,$(clients))
|
|
|
|
include ../Rules
|