makefile + gitignore

This commit is contained in:
2025-06-08 13:56:57 +02:00
parent 303797dc3d
commit ae4f5a243f
2 changed files with 13 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/build
*.jpeg

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
TEXFILE = cv.tex
BUILDDIR = build
compile: $(BUILDDIR)
pdflatex -output-directory=$(BUILDDIR) $(TEXFILE)
$(BUILDDIR):
mkdir -p $(BUILDDIR)
clean:
rm -rf $(BUILDDIR)