Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c75c336639c27a3fd7c08455b187ecae010eb49f (plain) (blame)
1
2
3
4
5
#!/bin/sh
[ -d gcc-debug ] || mkdir gcc-debug
cd gcc-debug
[ -f Makefile ] || cmake -DCMAKE_BUILD_TYPE=Debug -G "Unix Makefiles" ../..
make $*

Back to the top