Created
September 12, 2018 07:00
-
-
Save k3170makan/4d9a7b4774573f5725407f1f0d92d51a to your computer and use it in GitHub Desktop.
Sample Make file from ELF post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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