Created
June 24, 2022 19:40
-
-
Save sidewinder040/d53ccb4598ee007c1df7a6c7feac3264 to your computer and use it in GitHub Desktop.
Makefile - Simple Example
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
CC = g++ | |
CFLAGS = -g -Wall -Werror | |
test: test.o | |
test.o: test.cpp | |
clean: | |
rm test *.o | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment