Skip to content

Instantly share code, notes, and snippets.

@sidewinder040
Created June 24, 2022 19:40
Show Gist options
  • Save sidewinder040/d53ccb4598ee007c1df7a6c7feac3264 to your computer and use it in GitHub Desktop.
Save sidewinder040/d53ccb4598ee007c1df7a6c7feac3264 to your computer and use it in GitHub Desktop.
Makefile - Simple Example
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