occlum/demos/remote_attestation/dcap/c_app/Makefile
Zheng, Qi 1990196208 Add dcap rust based library and C test program
Signed-off-by: Zheng, Qi <huaiqing.zq@antgroup.com>
2021-07-20 11:17:09 +08:00

13 lines
195 B
Makefile

CC := gcc
LIBPATH := ../dcap_lib/target/debug
.PHONY: all clean
all: dcap_c_test
dcap_c_test: dcap_c_test.c
$(CC) $^ -fPIE -pie -o $@ -L $(LIBPATH) -ldcap_quote
clean:
rm -rf dcap_c_test