Skip to content

Instantly share code, notes, and snippets.

@rmccullagh
Created December 28, 2014 01:53
Show Gist options
  • Save rmccullagh/771abece1b40db479c42 to your computer and use it in GitHub Desktop.
Save rmccullagh/771abece1b40db479c42 to your computer and use it in GitHub Desktop.
Simplest Makefile
objects = main.o Var.o List.o
CCFLAGS = -Wall -Wextra -Wpedantic
main : $(objects)
cc $(CCFLAGS) -o main $(objects)
.PHONY : clean
clean:
rm -f main $(objects)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment