CC = gcc
CFLAGS = -g -fPIC -Wall -I../include
LDFLAGS = 

TARGETS = util.o util_uid.o log.o

all: $(TARGETS)

clean:
	rm -f $(TARGETS)

