Makefile 328 B

1234567891011121314151617181920
  1. #
  2. # To run the demos when linked with a shared library (default):
  3. #
  4. # LD_LIBRARY_PATH=../.. ./EVP_PKEY_EC_keygen
  5. CFLAGS = -I../../include -g
  6. LDFLAGS = -L../..
  7. LDLIBS = -lcrypto
  8. all: EVP_PKEY_EC_keygen
  9. %.o: %.c
  10. $(CC) $(CFLAGS) -c $<
  11. EVP_PKEY_EC_keygen: EVP_PKEY_EC_keygen.o
  12. test: ;
  13. clean:
  14. $(RM) *.o EVP_PKEY_EC_keygen