diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-11-07 05:26:24 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-11-07 05:26:24 +0100 |
commit | 67849b572926420c8808782f3f02a37fc07215ed (patch) | |
tree | 91dcd6bfb17b07b2914973973c1c4df6485d3d46 | |
parent | 5fc610ca7bbffa0ab8f9cdacbe920c9496549c4f (diff) |
add install target
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 15c5b47..b0482d1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -19,3 +19,7 @@ test_compile: $(LOCAL_INSTALL_PATH) test_gen: $(LOCAL_INSTALL_PATH) $(Q)$(MAKE) -C test gen \ $(if $(O),top_builddir=$(O)/) + +install: + mkdir -p $(DESTDIR) + tar --exclude='*.[och]' -cvf - test/ | tar -xvf - -C $(DESTDIR) |