From d585045aaf6c3413b357922b92c947a07f99f30c Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Fri, 28 May 2021 09:54:14 +0200 Subject: feat: Erster import --- makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..e56f0ef --- /dev/null +++ b/makefile @@ -0,0 +1,11 @@ +all: uuid-test + +uuid-test: main.o + cc -L/usr/local/lib -luuid -s -o $@ main.o + +main.o: main.c + cc -Wall -Werror -std=c99 -pedantic -I/usr/local/include -O2 -c main.c -o $@ + +.PHONY: clean +clean: + rm -f main.o uuid-test -- cgit v1.3