summaryrefslogtreecommitdiff
path: root/Makefile
blob: f768873b7e3d15be854abf216286e7cff193ddfc (plain) (blame)
1
2
3
4
5
6
# generic C script makefile

CFLAGS = -std=c99 -Wall -Wextra -pedantic

%: %.c
	$(CC) $(CFLAGS) -o $@ $<