diff options
| author | Thomas Schmucker <ts@its1.de> | 2020-06-14 10:15:41 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2020-06-14 10:15:41 +0200 |
| commit | 3ef857c28f55a0318e22fb1fb01da9c866156f76 (patch) | |
| tree | 8ace5077efe913c2cc18bb158829a4d2b621d6b2 /makefile | |
| parent | 05e33fb46c233f063e36eb9664ccc5553a4ae1af (diff) | |
| download | libcsv-3ef857c28f55a0318e22fb1fb01da9c866156f76.tar.gz libcsv-3ef857c28f55a0318e22fb1fb01da9c866156f76.tar.bz2 libcsv-3ef857c28f55a0318e22fb1fb01da9c866156f76.zip | |
makefile dem Projekt hinzugefügt
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 | ||
