Skip to content

Instantly share code, notes, and snippets.

@dunn
Created February 28, 2016 17:08
Show Gist options
  • Save dunn/cd14cffb49cfa73ee0cf to your computer and use it in GitHub Desktop.
Save dunn/cd14cffb49cfa73ee0cf to your computer and use it in GitHub Desktop.
default: all
SRC := $(wildcard *.c)
EXE := $(SRC:.c=)
all: $(EXE)
%: %.c
clang $< -o $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment