commit fe9e85f1fe519dbfdb4fde4ab3a36ed1aa6acea4 parent 87f1323fbdb38ea5cb2236101abfb91d0ada980c Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Mon, 24 Jun 2019 17:56:01 +0200 Attempt to fix CI default target Diffstat:
M | .gitlab-ci.yml | | | 2 | +- |
M | Makefile | | | 6 | +++--- |
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -2,6 +2,6 @@ build-alpine: stage: build image: alpine:edge before_script: - - apk --no-cache add build-base gnuplot + - apk --no-cache add build-base git gnuplot script: - make diff --git a/Makefile b/Makefile @@ -1,9 +1,9 @@ REPO = 1d_fd_simple_shear -$(REPO)/$(REPO): $(REPO) - make -C $< +$(REPO)/$(REPO): $(REPO)/Makefile + make -C $(REPO) -$(REPO): +$(REPO)/Makefile: git submodule update --init --recursive clean: