aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
blob: b2ddb0a82693a7a62d7a3bc546d4a06f8601c313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

idate=$(date +"%s" -r .git/index)
odate=$(date +"%s" -r ./.updated)

if (( $idate > $odate )); then
	echo "Project updated, building all..."
	make clean
	make -j4
	touch ./.updated
else
	echo "Up to date, building..."
	make -j4
fi