X-Git-Url: http://git.thejh.net/?p=cwebfiles.git;a=blobdiff_plain;f=compile;h=251fa4ac3d49352a288a46b9f1791359ece3b54e;hp=68ca0e55803b412e150d8e5db37b5d2bba01ec26;hb=613a08c6febb5126b81b313311b939dbae7290c9;hpb=44ce233ab82694ae1c85d0969ec3dd89d04c4992 diff --git a/compile b/compile index 68ca0e5..251fa4a 100755 --- a/compile +++ b/compile @@ -1,6 +1,7 @@ #!/bin/bash for cgi in login checkstatus listdir; do - diet gcc -O3 -std=gnu99 -Wall -Werror -g -o $cgi $cgi.c cgistuff.c hex.c -lcrypt + echo -e "\ncompiling $cgi.c..." + diet gcc -O3 -std=gnu99 -Wall -Werror -g -o $cgi $cgi.c cgistuff.c hex.c -lcrypt -lowfat sudo chown root:root $cgi sudo chmod u+s $cgi done