CC=gcc
CFLAGS=-Wall -c

build:
	$(CC) $(CFLAGS) -o test.o test.c
	$(CC) -o test test.o -lepassapi -luuid
clean:
	rm -f *.o
	rm -f test

