Skip to content
Snippets Groups Projects
Commit 0906153c authored by Blaise Li's avatar Blaise Li
Browse files

Fix makefile. Symbolic link update was wrong.

parent 8ddf5ca7
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,9 @@ ifeq ($(PREFIX),)
PREFIX := /opt/bioinfo_utils
endif
all: run_pipeline
install: all
install: run_pipeline
install -d $(PREFIX)_$(VERSION)/bin
install run_pipeline $(PREFIX)_$(VERSION)/bin/.
install run_pipeline.sh $(PREFIX)_$(VERSION)/bin/.
......@@ -13,9 +14,7 @@ install: all
do \
ln -sf $(PREFIX)_$(VERSION)/bin/run_pipeline.sh $(PREFIX)_$(VERSION)/bin/run_$${datatype}_pipeline; \
done
ln -sf $(PREFIX)_$(VERSION) $(PREFIX)
all: run_pipeline
ln -sfn $(PREFIX)_$(VERSION) $(PREFIX)
# Should depend on the rest of the repository.
run_pipeline: run_pipeline.def
......
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