summaryrefslogtreecommitdiff
path: root/makefile
blob: e5c9303404759698957fa19de65bb16fbb9c0794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: csv-test seq-read

CFLAGS=-Wall -Werror -std=c11 -pedantic -O2

csv-test: csv-test.c
	cc $(CFLAGS) -o $@ $<

seq-read: seq-read.c
	cc $(CFLAGS) -o $@ $<

.PHONY: clean
clean:
	rm csv-test seq-read