SOURCE = main.cpp GetPinInfo.cpp
LIBS = -ldl -lepsng_p11
CFLAGS = -g
all:
	g++ $(CFLAGS) $(SOURCE) $(LIBS) -o pininfo
clean:
	rm pininfo 
