Ever burned a cake?
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.

18 lines
216B

  1. #!/bin/make -f
  2. CFLAGS := -std=gnu99 -O2 -Wall -Wextra -Wpedantic -pipe
  3. baked:
  4. ${LINK.c} baked.c -o baked
  5. bake:
  6. ./baked ./baked.c
  7. install: baked
  8. ./baked ./install
  9. clean:
  10. -rm baked
  11. .PHONY: bake install clean