Skip to content
Snippets Groups Projects
Commit 2a933d0e authored by Murat Ambarkutuk's avatar Murat Ambarkutuk :robot:
Browse files

add build option to the makefile and change the workspace name

parent ba3bd6a8
1 merge request!2Develop the main algorithm backbone
...@@ -2,7 +2,7 @@ SHELL=/bin/bash ...@@ -2,7 +2,7 @@ SHELL=/bin/bash
env_file = .env env_file = .env
include ${env_file} include ${env_file}
.PHONY: clean up down restart stop reload ps logs logsf push env .PHONY: build clean up down restart stop reload ps logs logsf push env
all: reload all: reload
...@@ -10,7 +10,11 @@ default: all ...@@ -10,7 +10,11 @@ default: all
unsupervised-segmentation: unsupervised-segmentation:
docker exec -it $@ bash docker exec -it $@ bash
build:
@echo "Starting to build"
docker-compose build
clean: pyclean prune clean: pyclean prune
up: up:
......
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.gpuAcceleration": "off",
"editor.wordWrap": "on",
"latex-workshop.latex.recipe.default": "lastUsed",
"latex-workshop.latex.autoBuild.run": "never",
"latex-workshop.latex.recipes": [
{
"name": "magic 🐟",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"makeglossaries",
// "makeindex",
"pdflatex"
]
}
],
"files.associations": {
"*.tikz": "latex",
"*.table": "latex",
"*.figure": "latex"
},
"latex-workshop.latex.tools": [
{
"name": "makeindex",
"command": "makeindex",
"args": [
"%DOCFILE%.nlo",
"-s",
"nomencl.ist",
"-o",
"%DOCFILE%.nls"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
],
"env": {}
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
],
"env": {}
},
{
"name": "makeglossaries",
"command": "makeglossaries",
"args": [
"%DOCFILE%"
]
}
],
},
"tasks": {
"version": "2.0.0",
"tasks": []
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment