Skip to content

Instantly share code, notes, and snippets.

@k3170makan
Created September 12, 2018 07:00
Show Gist options
  • Save k3170makan/4d9a7b4774573f5725407f1f0d92d51a to your computer and use it in GitHub Desktop.
Save k3170makan/4d9a7b4774573f5725407f1f0d92d51a to your computer and use it in GitHub Desktop.
Sample Make file from ELF post
PROG=compile_me
CC=gcc
FLAGS=-Wall -O2
all:
$(CC) -o $(PROG).elf $(PROG).c $(FLAGS)
clean:
rm -f *.elf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment