You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
178 B

  1. mkdir quickbuild
  2. clang src/main.c -g -o ./quickbuild/lisp --std=c99 || exit 1
  3. echo ""
  4. echo "--- Output Start ---"
  5. ./quickbuild/lisp
  6. echo "--- Output End ---"
  7. rm -rf quickbuild