Makefile

Makefile
# By popular request[1], a simple Makefile. It turns one .c file into one
# executable.
# Put the name of the targets here:
TARGETS = hello_world
all: $(TARGETS)
%: %.c
cc $(CFLAGS) $< -o $@
# 1. Or repeated requests from one person.