Add Makefile and README.md

This commit is contained in:
Andreas Tsouchlos 2024-06-19 11:27:02 +02:00
parent fb1a659a8e
commit cc01b93bf9
2 changed files with 27 additions and 0 deletions

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
all:
latexmk
clean:
rm -rf build

22
README.md Normal file
View File

@ -0,0 +1,22 @@
# CEL Presentation
LaTeX sources for a presentation held at CEL on the 21.06.2024.
## Build
### Build manually
```bash
$ make
```
### Build using docker
1. Build docker image
```bash
$ docker build -f dockerfiles/Dockerfile.alpine . -t cel-presentation
```
1. Build examples
```bash
$ docker run --rm -v $PWD:$PWD -w $PWD -u `id -u`:`id -g` cel-presentation make
```