summaryrefslogtreecommitdiff
path: root/makefile
blob: 4fdc242aa20b141bde2add87036da35532b18023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Makefile für das unifox.js Projekt

# Ziel: alles
all: setup

# Ziel: setup
setup:
    git clone https://github.com/your/repository.git
    cd repository
    chmod +x install.sh
    ./install.sh

@echo "Setup completed."