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