summaryrefslogtreecommitdiff
path: root/makefile
blob: 9077e02aee010cf5649ac1a92be46514b9512a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
all: uuid-test

uuid-test: main.o
	cc -luuid -s -o $@ main.o

main.o: main.c
	cc -Wall -Werror -std=c99 -pedantic -O2 -c main.c -o $@

.PHONY: clean
clean:
	rm -f main.o uuid-test