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.

8 lines
182 B

  1. #!/bin/bash
  2. case "$1" in
  3. *.asm) nasm -f elf64 "$1" && ld "${1%.*}".o -o "${1%.*}"; rm "${1%.*}".o ;;
  4. *.c) gcc "$1" -o "${1%.*}" ;;
  5. *.go) go build "$1" ;;
  6. Makefile) make ;;
  7. esac