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)
https://www.ibm.com/docs/en/linux-on-systems?topic=examples-makefile-example
                    
                
                
            
        
浙公网安备 33010602011771号