summaryrefslogtreecommitdiffstats
path: root/ffi/examples/Makefile
blob: 730cee1c593eb5b49a834826d72014ae0657487a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Makefile for examples written in C.

TARGETS = example keyserver configure
CFLAGS  = -I../src -O0 -g -Wall
LDFLAGS = -L../../target/debug -lsequoia_ffi

all: $(TARGETS)

clean:
	rm -f $(TARGETS)

$(TARGETS): ../src/sequoia.h