From c9a0b6dc51028134050e5527c8ec936c7dc5fe2d Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Mon, 6 Jul 2026 23:48:14 +0200 Subject: überflüssige Flags und Includes entfernt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index e56f0ef..9077e02 100644 --- a/makefile +++ b/makefile @@ -1,10 +1,10 @@ all: uuid-test uuid-test: main.o - cc -L/usr/local/lib -luuid -s -o $@ main.o + cc -luuid -s -o $@ main.o main.o: main.c - cc -Wall -Werror -std=c99 -pedantic -I/usr/local/include -O2 -c main.c -o $@ + cc -Wall -Werror -std=c99 -pedantic -O2 -c main.c -o $@ .PHONY: clean clean: -- cgit v1.3