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

# ewemake verision #VERSION# - a wrapper for Make

tmpFile="$(mktemp)"
Make -A "${tmpFile}"
chmod +x "${tmpFile}"
"${tmpFile}"
rm -f "${tmpFile}"