2022-03-31 19:22:07 +02:00
|
|
|
src := cli.c cmds.c iface.c locks.c neighbor.c password.c proto.c proto-build.c rt-attr.c rt-dev.c rt-fib.c rt-show.c rt-table.c
|
2016-04-12 11:14:54 +02:00
|
|
|
obj := $(src-o-files)
|
|
|
|
$(all-daemon)
|
|
|
|
$(cf-local)
|
2022-03-18 22:05:50 +01:00
|
|
|
|
2022-08-18 18:32:33 +02:00
|
|
|
$(objdir)/nest/proto-build.c: $(lastword $(MAKEFILE_LIST))
|
2022-03-18 22:05:50 +01:00
|
|
|
$(E)echo GEN $@
|
2022-07-18 10:26:55 +02:00
|
|
|
$(Q)echo "#include \"lib/birdlib.h\"" > $@
|
2022-09-09 13:15:50 +02:00
|
|
|
$(Q)$(patsubst %,echo 'void %_build(void);' >> $@;,$(PROTO_BUILD))
|
2022-07-18 10:26:55 +02:00
|
|
|
$(Q)echo "void protos_build_gen(void) {" >> $@
|
2022-09-09 13:15:50 +02:00
|
|
|
$(Q)$(patsubst %,echo ' %_build();'>>$@;,$(PROTO_BUILD))
|
2022-07-18 10:26:55 +02:00
|
|
|
$(Q)echo "}" >> $@
|
2016-11-09 16:36:34 +01:00
|
|
|
|
2022-03-31 19:22:07 +02:00
|
|
|
tests_src :=
|
2016-11-09 16:36:34 +01:00
|
|
|
tests_targets := $(tests_targets) $(tests-target-files)
|
|
|
|
tests_objs := $(tests_objs) $(src-o-files)
|