Skip to content

Commit

Permalink
fixed installation location of js libs
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinDo committed Nov 24, 2024
1 parent c8dddb8 commit 0f5e68a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
ROOT := $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
TOOLS := $(ROOT)/tools
JSLIBS := $(ROOT)/src/frontend_celery/webapp/static/packages
DATA := $(ROOT)/data
DBS := $(DATA)/dbs
GENOMES := $(DATA)/genomes
Expand Down Expand Up @@ -211,7 +212,7 @@ herediclass_update_config:
js_libs: bootstrap igv jquery datatables

## BOOTSTRAP
BOOTSTRAPPATH := $(TOOLS)
BOOTSTRAPPATH := $(JSLIBS)
BOOTSTRAPNAME := bootstrap
BOOTSTRAP := $(BOOTSTRAPPATH)/$(BOOTSTRAPNAME)
BOOTSTRAPVERSION := 5.2.3
Expand All @@ -228,7 +229,7 @@ bootstrap_update: bootstrap_clean bootstrap

## IGV
# download csp conform version from: https://download.imgag.de/ahdoebm1/igv/
IGVPATH := $(TOOLS)
IGVPATH := $(JSLIBS)
IGVNAME := igv
IGV := $(IGVPATH)/$(IGVNAME)
IGVVERSION := 2.15.0
Expand All @@ -244,7 +245,7 @@ igv_clean:
igv_update: igv_clean igv

## JQUERY
JQUERYNAME := $(TOOLS)
JQUERYNAME := $(JSLIBS)
JQUERYPATH := jquery
JQUERY := $(JQUERYPATH)/$(JQUERYNAME)
JQUERYVERSION := 3.6.3
Expand All @@ -260,7 +261,7 @@ jquery_clean:
jquery_update: jquery_clean jquery

## DATATABLES
DATATABLESNAME := $(TOOLS)
DATATABLESNAME := $(JSLIBS)
DATATABLESPATH := datatables
DATATABLES := $(DATATABLESPATH)/$(DATATABLESNAME)
DATATABLESVERSION := 1.13.4
Expand Down

0 comments on commit 0f5e68a

Please sign in to comment.