summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-07-06 23:48:14 +0200
committerThomas Schmucker <ts@its1.de>2026-07-06 23:48:14 +0200
commitc9a0b6dc51028134050e5527c8ec936c7dc5fe2d (patch)
treeef6cbfa300329d7aa2dba68306b8e3a78e7085b4
parentd585045aaf6c3413b357922b92c947a07f99f30c (diff)
downloaduse-libuuid-c9a0b6dc51028134050e5527c8ec936c7dc5fe2d.tar.gz
use-libuuid-c9a0b6dc51028134050e5527c8ec936c7dc5fe2d.tar.bz2
use-libuuid-c9a0b6dc51028134050e5527c8ec936c7dc5fe2d.zip
überflüssige Flags und Includes entferntHEADmaster
-rw-r--r--main.c1
-rw-r--r--makefile4
2 files changed, 2 insertions, 3 deletions
diff --git a/main.c b/main.c
index 19483e6..bd8d6e2 100644
--- a/main.c
+++ b/main.c
@@ -1,5 +1,4 @@
1#include <stdio.h> 1#include <stdio.h>
2#include <stdlib.h>
3#include <uuid/uuid.h> 2#include <uuid/uuid.h>
4 3
5int main(void) 4int main(void)
diff --git a/makefile b/makefile
index e56f0ef..9077e02 100644
--- a/makefile
+++ b/makefile
@@ -1,10 +1,10 @@
1all: uuid-test 1all: uuid-test
2 2
3uuid-test: main.o 3uuid-test: main.o
4 cc -L/usr/local/lib -luuid -s -o $@ main.o 4 cc -luuid -s -o $@ main.o
5 5
6main.o: main.c 6main.o: main.c
7 cc -Wall -Werror -std=c99 -pedantic -I/usr/local/include -O2 -c main.c -o $@ 7 cc -Wall -Werror -std=c99 -pedantic -O2 -c main.c -o $@
8 8
9.PHONY: clean 9.PHONY: clean
10clean: 10clean: