summaryrefslogtreecommitdiff
path: root/ewemake.in
blob: d5bc1632cd5711292e3b92e063cf6bcab6112d70 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

# ewemake verision #VERSION# - a wrapper for Make

tmpDatei="$(mktemp)"
trap 'rm -f "${tmpDatei}"' EXIT

Make -l -A "${tmpDatei}" "$@"
chmod +x "${tmpDatei}"
"${tmpDatei}"