mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-05 08:31:53 +00:00
17 lines
431 B
Makefile
17 lines
431 B
Makefile
src := filter.c f-util.c tree.c trie.c
|
|
obj := $(src-o-files)
|
|
$(all-daemon)
|
|
$(cf-local)
|
|
|
|
tests_src := tree_test.c filter_test.c trie_test.c
|
|
tests_targets := $(tests_targets) $(tests-target-files)
|
|
tests_objs := $(tests_objs) $(src-o-files)
|
|
|
|
$(conf-y-targets): $(s)methods.Y
|
|
|
|
$(o)methods.h: | $(s)gen_methods.m4
|
|
$(objdir)/conf/cf-parse.tab.o: $(o)methods.h
|
|
|
|
$(addprefix $(o), methods.h): $(objdir)/.dir-stamp
|
|
$(call clean, methods.h)
|