diff options
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..e5c9303 --- /dev/null +++ b/makefile | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | all: csv-test seq-read | ||
| 2 | |||
| 3 | CFLAGS=-Wall -Werror -std=c11 -pedantic -O2 | ||
| 4 | |||
| 5 | csv-test: csv-test.c | ||
| 6 | cc $(CFLAGS) -o $@ $< | ||
| 7 | |||
| 8 | seq-read: seq-read.c | ||
| 9 | cc $(CFLAGS) -o $@ $< | ||
| 10 | |||
| 11 | .PHONY: clean | ||
| 12 | clean: | ||
| 13 | rm csv-test seq-read | ||
