Skip to content

Commit

Permalink
change name since texfiles are not really 'scripts'
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyJosh committed Oct 1, 2024
1 parent f62a718 commit f331381
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions exercises-toolbox/8-all/example-report/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,24 +75,24 @@ $(target_bibfiles) &: $(template_bibfiles) | $(solution_dirs_with_latex)
build/report-example-step-%/Makefile-loesung &: templates/Makefile-loesung | $(solution_dirs)
cp templates/Makefile-loesung build/report-example-step-$*/Makefile-loesung

$(target_texfiles_v16516) &: generate-step-scripts.py templates/latex/v16516_tex_template | $(solution_dirs_with_latex)
python generate-step-scripts.py -t templates/latex/v16516_tex_template $(addprefix -o=,$(target_texfiles_v16516)) -s 7

$(target_texfiles_header) &: generate-step-scripts.py templates/latex/header_tex_template | $(solution_dirs_with_latex)
python generate-step-scripts.py -t templates/latex/header_tex_template $(addprefix -o=,$(target_texfiles_header)) -s 7

$(target_texfiles_durchfuehrung) &: generate-step-scripts.py templates/latex/durchfuehrung_tex_template | $(content_dirs_with_latex)
python generate-step-scripts.py -t templates/latex/durchfuehrung_tex_template $(addprefix -o=,$(target_texfiles_durchfuehrung)) -s 7
$(target_texfiles_theorie) &: generate-step-scripts.py templates/latex/theorie_tex_template | $(content_dirs_with_latex)
python generate-step-scripts.py -t templates/latex/theorie_tex_template $(addprefix -o=,$(target_texfiles_theorie)) -s 7
$(target_texfiles_auswertung) &: generate-step-scripts.py templates/latex/auswertung_tex_template | $(content_dirs_with_latex)
python generate-step-scripts.py -t templates/latex/auswertung_tex_template $(addprefix -o=,$(target_texfiles_auswertung)) -s 7
$(target_texfiles_diskussion) &: generate-step-scripts.py templates/latex/diskussion_tex_template | $(content_dirs_with_latex)
python generate-step-scripts.py -t templates/latex/diskussion_tex_template $(addprefix -o=,$(target_texfiles_diskussion)) -s 7

$(target_pythonfiles) &: generate-step-scripts.py templates/auswertung_py_template | $(solution_dirs)
$(target_texfiles_v16516) &: generate-step-files.py templates/latex/v16516_tex_template | $(solution_dirs_with_latex)
python generate-step-files.py -t templates/latex/v16516_tex_template $(addprefix -o=,$(target_texfiles_v16516)) -s 7

$(target_texfiles_header) &: generate-step-files.py templates/latex/header_tex_template | $(solution_dirs_with_latex)
python generate-step-files.py -t templates/latex/header_tex_template $(addprefix -o=,$(target_texfiles_header)) -s 7

$(target_texfiles_durchfuehrung) &: generate-step-files.py templates/latex/durchfuehrung_tex_template | $(content_dirs_with_latex)
python generate-step-files.py -t templates/latex/durchfuehrung_tex_template $(addprefix -o=,$(target_texfiles_durchfuehrung)) -s 7
$(target_texfiles_theorie) &: generate-step-files.py templates/latex/theorie_tex_template | $(content_dirs_with_latex)
python generate-step-files.py -t templates/latex/theorie_tex_template $(addprefix -o=,$(target_texfiles_theorie)) -s 7
$(target_texfiles_auswertung) &: generate-step-files.py templates/latex/auswertung_tex_template | $(content_dirs_with_latex)
python generate-step-files.py -t templates/latex/auswertung_tex_template $(addprefix -o=,$(target_texfiles_auswertung)) -s 7
$(target_texfiles_diskussion) &: generate-step-files.py templates/latex/diskussion_tex_template | $(content_dirs_with_latex)
python generate-step-files.py -t templates/latex/diskussion_tex_template $(addprefix -o=,$(target_texfiles_diskussion)) -s 7

$(target_pythonfiles) &: generate-step-files.py templates/auswertung_py_template | $(solution_dirs)
touch $(word 1, $(target_pythonfiles))
python generate-step-scripts.py -t templates/auswertung_py_template $(addprefix -o=, $(target_pythonfiles))
python generate-step-files.py -t templates/auswertung_py_template $(addprefix -o=, $(target_pythonfiles))

$(datafiles_template_step-1) &: | build/report-example-step-1
cp -r templates/data_without_uncertainties build/report-example-step-1/data
Expand Down

0 comments on commit f331381

Please sign in to comment.