CC 	= gcc
FLAGS 	= 
CFLAGS 	= -fPIC -g

all: test.c 
	$(CC) $(CFLAGS) test.c -luosdlp -I /usr/include/libuosdlp -o test

clean:
	rm test || true