use fast string formatting routines
[cwebfiles.git] / compile
diff --git a/compile b/compile
index 68ca0e5..251fa4a 100755 (executable)
--- 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