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