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