Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
Build system
Browse files Browse the repository at this point in the history
  • Loading branch information
bitflipp committed Nov 21, 2019
1 parent 502fe25 commit e43710a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Beispiellösung/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
all: run

setup:
pip install --user -r requirements.txt

run:
./example.py
8 changes: 5 additions & 3 deletions Beispiellösung/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,18 @@ docker build --tag icup2020_example .
docker run --publish 50123:50123 --interactive --tty --rm icup2020_example
```

# Without Docker
# With GNU Make

This example uses GNU Make. You may use any other free (= at no charge) build system.

## Setup

```
pip install --user -r requirements.txt
make setup
```

## Run

```
./example.py
make
```
Empty file modified Beispiellösung/example.py
100644 → 100755
Empty file.

0 comments on commit e43710a

Please sign in to comment.