Skip to content

Instantly share code, notes, and snippets.

@TorNATO-PRO
Created September 29, 2021 18:08
Show Gist options
  • Save TorNATO-PRO/0d98e14167ae19fb193aa9e284c74a22 to your computer and use it in GitHub Desktop.
Save TorNATO-PRO/0d98e14167ae19fb193aa9e284c74a22 to your computer and use it in GitHub Desktop.
# build an executable named myprog from myprog.c
all: myprog.c
gcc -g -Wall -o myprog myprog.c
clean:
$(RM) myprog
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment