aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-06-14 10:15:41 +0200
committerThomas Schmucker <ts@its1.de>2020-06-14 10:15:41 +0200
commit3ef857c28f55a0318e22fb1fb01da9c866156f76 (patch)
tree8ace5077efe913c2cc18bb158829a4d2b621d6b2
parent05e33fb46c233f063e36eb9664ccc5553a4ae1af (diff)
downloadlibcsv-3ef857c28f55a0318e22fb1fb01da9c866156f76.tar.gz
libcsv-3ef857c28f55a0318e22fb1fb01da9c866156f76.tar.bz2
libcsv-3ef857c28f55a0318e22fb1fb01da9c866156f76.zip
makefile dem Projekt hinzugefügt
-rw-r--r--makefile13
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 @@
1all: csv-test seq-read
2
3CFLAGS=-Wall -Werror -std=c11 -pedantic -O2
4
5csv-test: csv-test.c
6 cc $(CFLAGS) -o $@ $<
7
8seq-read: seq-read.c
9 cc $(CFLAGS) -o $@ $<
10
11.PHONY: clean
12clean:
13 rm csv-test seq-read