Makefile example
# Specify include directory. Leave blank for default system location.
INCDIR =
# Specify library directory. Leave blank for default system location.
LIBDIR =
# Specify library.
LIBS = -lica
TARGETS = example_aes128_gcm
all: $(TARGETS)
%: %.c
gcc $(INCDIR) $(LIBDIR) $(LIBS) -o $@ $^
clean:
rm -f $(TARGETS)