makefile.shared 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # MAKEFILE for linux GCC
  2. #
  3. # This makefile produces a shared object and requires libtool to be installed.
  4. #
  5. # Thanks to Zed Shaw for helping debug this on BSD/OSX.
  6. # Tom St Denis
  7. #
  8. # (GNU make only)
  9. ### USAGE:
  10. #
  11. # CFLAGS="-DUSE_LTM -DLTM_DESC -I/path/to/libtommath" make -f makefile.shared all EXTRALIBS=/path/to/libtommath/libtommath.a
  12. # ./test
  13. # make -f makefile.shared PREFIX=/opt/libtom install
  14. #
  15. PLATFORM := $(shell uname | sed -e 's/_.*//')
  16. ### Observed uname outputs:
  17. # MINGW32_NT-6.2 (on MSYS/MINGW old)
  18. # MINGW64_NT-10.0-14393 (on MSYS new)
  19. # MSYS_NT-10.0-19042 (on MSYS2)
  20. # CYGWIN_NT-10.0 (on Cygwin 64bit)
  21. # CYGWIN_NT-6.2-WOW64 (on Cygwin 32bit)
  22. # Linux (on all Linux distros)
  23. # Darwin (on macOS, OS X)
  24. ifeq ($(LIBTOOL),rlibtool)
  25. TGTLIBTOOL:=slibtool-shared
  26. else
  27. ifndef LIBTOOL
  28. ifeq ($(PLATFORM), Darwin)
  29. TGTLIBTOOL:=glibtool
  30. else
  31. TGTLIBTOOL:=libtool
  32. endif
  33. else
  34. TGTLIBTOOL=$(LIBTOOL)
  35. endif
  36. endif
  37. ifneq ($(findstring $(PLATFORM),CYGWIN MINGW32 MINGW64 MSYS),)
  38. NO_UNDEFINED:=-no-undefined
  39. endif
  40. LTCOMPILE = $(TGTLIBTOOL) --mode=compile --tag=CC $(CC)
  41. INSTALL_CMD = $(TGTLIBTOOL) --mode=install install
  42. UNINSTALL_CMD = $(TGTLIBTOOL) --mode=uninstall rm
  43. #Output filenames for various targets.
  44. ifndef LIBNAME
  45. LIBNAME=libtomcrypt.la
  46. endif
  47. include makefile_include.mk
  48. ifneq ($(findstring -DLTM_DESC,$(LTC_CFLAGS)),)
  49. LTC_MPI_PROVIDERS_CFLAGS += -DLTM_DESC
  50. LTC_MPI_PROVIDERS_LIBS += -ltommath
  51. endif
  52. ifneq ($(findstring -DTFM_DESC,$(LTC_CFLAGS)),)
  53. LTC_MPI_PROVIDERS_CFLAGS += -DTFM_DESC
  54. LTC_MPI_PROVIDERS_LIBS += -ltfm
  55. endif
  56. ifneq ($(findstring -DGMP_DESC,$(LTC_CFLAGS)),)
  57. LTC_MPI_PROVIDERS_CFLAGS += -DGMP_DESC
  58. LTC_MPI_PROVIDERS_LIBS += -lgmp
  59. endif
  60. #ciphers come in two flavours... enc+dec and enc
  61. src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
  62. $(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o
  63. src/ciphers/aes/aes_enc_desc.o: src/ciphers/aes/aes_desc.c
  64. $(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes_desc.c -o src/ciphers/aes/aes_enc_desc.o
  65. .c.o:
  66. $(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -o $@ -c $<
  67. LOBJECTS = $(OBJECTS:.o=.lo)
  68. $(LIBNAME): $(OBJECTS)
  69. $(TGTLIBTOOL) --mode=link --tag=CC $(CC) $(LTC_LDFLAGS) $(LOBJECTS) $(EXTRALIBS) -o $@ -rpath $(LIBPATH) -version-info $(VERSION_LT) $(NO_UNDEFINED)
  70. test: $(call print-help,test,Builds the library and the 'test' application to run all self-tests) $(LIBNAME) $(TOBJECTS)
  71. $(TGTLIBTOOL) --mode=link --tag=CC $(CC) $(LTC_LDFLAGS) -o $(TEST) $(TOBJECTS) $(LIBNAME) $(EXTRALIBS)
  72. # build the demos from a template
  73. define DEMO_template
  74. $(1): $(call print-help,$(1),Builds the library and the '$(1)' demo) demos/$(1).o $$(LIBNAME)
  75. $$(TGTLIBTOOL) --mode=link --tag=CC $$(CC) $$(LTC_LDFLAGS) $$^ $$(EXTRALIBS) -o $(1)
  76. endef
  77. $(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo))))
  78. install: $(call print-help,install,Installs the library + headers + pkg-config file) .common_install
  79. sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION_PC),' -e 's,^libdir=.*,libdir=$(LIBPATH),' \
  80. -e 's,^includedir=.*,includedir=$(INCPATH),' \
  81. -e 's,@MPI_PROVIDERS_LIBS@,$(LTC_MPI_PROVIDERS_LIBS),' \
  82. -e 's,@MPI_PROVIDERS_CFLAGS@,$(LTC_MPI_PROVIDERS_CFLAGS),' libtomcrypt.pc.in > libtomcrypt.pc
  83. install -p -d $(DESTDIR)$(LIBPATH)/pkgconfig
  84. install -p -m 644 libtomcrypt.pc $(DESTDIR)$(LIBPATH)/pkgconfig/
  85. install_bins: $(call print-help,install_bins,Installs the useful demos ($(USEFUL_DEMOS))) .common_install_bins
  86. uninstall: $(call print-help,uninstall,Uninstalls the library + headers + pkg-config file) .common_uninstall
  87. rm $(DESTDIR)$(LIBPATH)/pkgconfig/libtomcrypt.pc
  88. # ref: $Format:%D$
  89. # git commit: $Format:%H$
  90. # commit time: $Format:%ai$