Skip to content

Instantly share code, notes, and snippets.

@jiripospisil
Created March 16, 2014 16:53
Show Gist options
  • Select an option

  • Save jiripospisil/5f0750989c2cefc0e257 to your computer and use it in GitHub Desktop.

Select an option

Save jiripospisil/5f0750989c2cefc0e257 to your computer and use it in GitHub Desktop.
CC = clang
CFLAGS = -Weverything
SRC = hello.c
OBJ = $(SRC:.c=.o)
hello: $(OBJ)
$(CC) -o $@ $^
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
all: hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment