diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-05-24 17:48:12 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-07-31 23:03:27 +0200 |
commit | 4a121f99f762258b4382b8a68f28094849fc3dfa (patch) | |
tree | 01d04eb73e8ad166bd474a65b30ec44507616bd6 /lib/Makefile | |
parent | Merge pull request #881 from donaldsharp/ping_traceroute (diff) | |
download | frr-4a121f99f762258b4382b8a68f28094849fc3dfa.tar.xz frr-4a121f99f762258b4382b8a68f28094849fc3dfa.zip |
build: convert lib/ to non-recursive build
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 000000000..62051ac4c --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,10 @@ +all: ALWAYS + @$(MAKE) -s -C .. lib/libfrr.la +%: ALWAYS + @$(MAKE) -s -C .. lib/$@ + +Makefile: + #nothing +ALWAYS: +.PHONY: ALWAYS makefiles +.SUFFIXES: |