summaryrefslogtreecommitdiff
path: root/makefile
blob: e56f0efac4d45a8215bfed066f6816a0de83a6e0 (plain)
1
2
3
4
5
6
7
8
9
10
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