summaryrefslogtreecommitdiffstats
path: root/ffi/examples/Makefile
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-02-16 10:43:58 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-02-16 10:45:46 +0100
commitddb4f6ff456f2152afecd190c44e1a4ff6cacb2f (patch)
tree34d9beb24bbfd7ff64bec2fbb136fda4bbdcd53f /ffi/examples/Makefile
parentffb458909ab90b410e02316d29c9d2779477fea6 (diff)
ffi: Split header up at the module boundaries.
- The header was already unwieldy, and we did not even include accessors for all the data structures we currently have.
Diffstat (limited to 'ffi/examples/Makefile')
-rw-r--r--ffi/examples/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffi/examples/Makefile b/ffi/examples/Makefile
index 730cee1c..aa1da727 100644
--- a/ffi/examples/Makefile
+++ b/ffi/examples/Makefile
@@ -1,7 +1,7 @@
# Makefile for examples written in C.
TARGETS = example keyserver configure
-CFLAGS = -I../src -O0 -g -Wall
+CFLAGS = -I../include -O0 -g -Wall
LDFLAGS = -L../../target/debug -lsequoia_ffi
all: $(TARGETS)
@@ -9,4 +9,4 @@ all: $(TARGETS)
clean:
rm -f $(TARGETS)
-$(TARGETS): ../src/sequoia.h
+$(TARGETS): ../include/sequoia.h