From 3ef857c28f55a0318e22fb1fb01da9c866156f76 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Sun, 14 Jun 2020 10:15:41 +0200 Subject: makefile dem Projekt hinzugefügt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..e5c9303 --- /dev/null +++ b/makefile @@ -0,0 +1,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 -- cgit v1.3