ceal 0.1.0

Opportunistic E-Mail Encryption - Stand-Alone Library and Extensions for Lettre
Documentation
1
2
3
4
5
6
7
8
9
CXX     ?= clang++
CXXLAGS ?= -g -Wp,-D_GLIBCXX_ASSERTIONS -Wall

mailio_test: mailio_test.cxx
	$(CXX) $(CXXFLAGS) $$(pkg-config --cflags --libs mailio) -o mailio_test mailio_test.cxx

clean:
	rm mailio_test
.PHONY: clean