diff options
author | David Lamparter <equinox@diac24.net> | 2019-02-18 13:09:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-18 13:09:29 +0100 |
commit | e5676cb3787878fdebb37962b1d5536f2f10c3ae (patch) | |
tree | 6fa16506a6948eefcf4c6faf232ecbb5830d68b3 /sharpd | |
parent | Merge pull request #3808 from qlyoung/update-readme-protos (diff) | |
parent | build: non-recursive sharpd (diff) | |
download | frr-e5676cb3787878fdebb37962b1d5536f2f10c3ae.tar.xz frr-e5676cb3787878fdebb37962b1d5536f2f10c3ae.zip |
Merge pull request #3797 from donaldsharp/allow_in_dir_build
build: non-recursive sharpd
Diffstat (limited to 'sharpd')
-rw-r--r-- | sharpd/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sharpd/Makefile b/sharpd/Makefile new file mode 100644 index 000000000..6a904d1a6 --- /dev/null +++ b/sharpd/Makefile @@ -0,0 +1,10 @@ +all: ALWAYS + @$(MAKE) -s -C .. sharpd/sharpd +%: ALWAYS + @$(MAKE) -s -C .. sharpd/$@ + +Makefile: + #nothing +ALWAYS: +.PHONY: ALWAYS makefiles +.SUFFIXES: |