mirror of
https://github.com/intel/linux-sgx
synced 2026-06-08 14:49:32 +00:00
68f44d6e68
Support for Ubuntu 18.04 LTS 64-bit Desktop and Server version
Provided a new set of SGX common loader APIs in sgx_enclave_common.h
Provided the sample code for Switchless Call
Provided a new API in tcrypto: sgx_ecc256_calculate_pub_from_priv
sgx_create_enclave API will ignore the parameter of launch token and will not update it after function successfully returns
Change Intel SGX PSW installer for Ubuntu by
- Using .deb installer.
- Using name libsgx-enclave-common_{version string}-1_amd64.deb.
- Installing Intel SGX Enclave Common loader library.
Bug fixes
Signed-off-by: Li, Xun <xun.li@intel.com>
23 lines
338 B
Makefile
23 lines
338 B
Makefile
#!/usr/bin/make -f
|
|
|
|
ARGTABLE_SRC = $(wildcard *.c)
|
|
ARGTABLE_OBJ = $(sort $(ARGTABLE_SRC:.c=.o))
|
|
|
|
ARGTABLE_LIB = libargtable3.a
|
|
|
|
$(ARGTABLE_OBJ): %.o: %.c
|
|
$(CC) -o $@ -c $(CFLAGS) $<
|
|
|
|
$(ARGTABLE_LIB): $(ARGTABLE_OBJ)
|
|
$(AR) rc $@ $^
|
|
$(RANLIB) $@
|
|
|
|
build: all
|
|
|
|
all: $(ARGTABLE_LIB)
|
|
|
|
install:
|
|
|
|
clean:
|
|
rm -f $(ARGTABLE_OBJ) $(ARGTABLE_LIB)
|