summaryrefslogtreecommitdiffstats
path: root/ffi/examples/Makefile
blob: aa1da7277e9454651dcd9523657eafddb7da5f1f (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../include -O0 -g -Wall
LDFLAGS = -L../../target/debug -lsequoia_ffi

all: $(TARGETS)

clean:
	rm -f $(TARGETS)

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