diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-09-20 18:33:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-20 18:33:57 +0200 |
commit | ea9177cc9397270172e16e10e2ed947c8471323c (patch) | |
tree | 492f6f90618cf5fb2ebee363ebf8aaee92999bfc /example/Makefile.in | |
parent | 1385f05713045b846f5a830cfc23eabd5f71e70d (diff) | |
parent | fdef6f3545bd4a8e722b2ace144a2b73a782f265 (diff) |
Merge pull request #1018 from lnslbrty/fix/make-dist
Fixed broken `make dist' and added CI check.
Diffstat (limited to 'example/Makefile.in')
-rw-r--r-- | example/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example/Makefile.in b/example/Makefile.in index e0dc34b95..76848d4c1 100644 --- a/example/Makefile.in +++ b/example/Makefile.in @@ -54,6 +54,10 @@ clean: /bin/rm -f _install _postbuild _postinstall _preinstall /bin/rm -rf build +distdir: + cp categories.txt mining_hosts.txt README.DPDK '$(distdir)/' + find . -maxdepth 1 -type f -name '*.c' -o -name '*.h' -o -name '*.py' | xargs -I'{}' cp '{}' '$(distdir)/{}' + distclean: clean /bin/rm -f Makefile.dpdk /bin/rm -f Makefile |