Skip to content
Snippets Groups Projects
Commit 6b4d68c2 authored by Jonas Höppner's avatar Jonas Höppner
Browse files

Add simple makefile to copy all scripts

parent 6050c143
No related branches found
No related tags found
1 merge request!3Add simple makefile to copy all scripts
Pipeline #69668 passed with stage
in 7 seconds
Makefile 0 → 100644
#scripts:=$(shell find -type f -iname \*.sh)
subdirs = qml-performance-tests video-tests
build:
# Nothing todo
install:
mkdir -p out
for dir in $(subdirs); do \
cp -R $$dir out; \
done
clean:
rm -rf out
.PHONY: clean
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment