summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2024-10-31 21:01:08 -0400
committerJonathan Bradley <jcb@pikum.xyz>2024-10-31 21:01:08 -0400
commite4d71f20517488dd48cec43a870af496b0f90c5b (patch)
tree4518595f17b62bcd697904d247d1fe5baa063ca6 /Makefile
parentb79beeafcb2feec7fbf830034ddcd61e03297283 (diff)
pkev: checkpoint: create
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1fe6142..a264610 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,7 @@ SRC = \
pkmem-types.h \
pkmem.h \
pkstr.h \
+ pkev.h \
test/pkmacros.c \
test/pkmacros.cpp \
test/pkmem-types.c \
@@ -29,6 +30,7 @@ all: options .WAIT clean .WAIT \
pkmem-types \
pkmem \
pkstr \
+ pkev \
test-pkmem-types test-pkmem-types-cpp \
test-pkmem test-pkmem-cpp \
test-pkmacros test-pkmacros-cpp \
@@ -64,15 +66,19 @@ pkmem: pkmem-types pkmem.gch pkmem.gchpp
pkstr: pkmacros pkstr.gch pkstr.gchpp
+pkev: pkev.gch pkev.gchpp
+
build: pkmacros
build: pkmem-types
build: pkmem
build: pkstr
+build: pkev
cat pk.h.in \
pkmacros.h \
pkmem-types.h \
pkmem.h \
pkstr.h \
+ pkev.h \
> pk.h
sed -i -r \
-e "s/@@PK_VERSION@@/$(VERSION)/g" \
@@ -106,7 +112,7 @@ test-pkstr: test/pkstr.o
test-pkstr-cpp: test/pkstr.so
$(CXX) -g -O0 -std=c++23 $(CPPFLAGS) -o test/$@ $^ $(LDFLAGS)
-test: pkmacros pkmem-types pkmem pkstr
+test: pkmacros pkmem-types pkmem pkstr pkev
test: test-pkmacros test-pkmacros-cpp
test: test-pkmem-types test-pkmem-types-cpp
test: test-pkmem test-pkmem-cpp