libtomcrypt/makefile.shared

86 lines
2.7 KiB
Plaintext
Raw Normal View History

2004-10-30 03:00:26 +00:00
# MAKEFILE for linux GCC
#
2004-12-30 23:55:53 +00:00
# This makefile produces a shared object and requires libtool to be installed.
#
2013-09-03 12:27:32 +00:00
# Thanks to Zed Shaw for helping debug this on BSD/OSX.
2004-10-30 03:00:26 +00:00
# Tom St Denis
2017-05-10 09:56:52 +00:00
#
# (GNU make only)
2004-10-30 03:00:26 +00:00
2017-06-13 12:57:07 +00:00
### USAGE:
#
# CFLAGS="-DUSE_LTM -DLTM_DESC -I/path/to/libtommath" make -f makefile.shared all EXTRALIBS=/path/to/libtommath/libtommath.a
# ./test
# make -f makefile.shared PREFIX=/opt/libtom install
2017-06-13 12:57:07 +00:00
#
PLATFORM := $(shell uname | sed -e 's/_.*//')
ifeq ($(LIBTOOL),rlibtool)
TGTLIBTOOL:=slibtool-shared
2019-06-03 07:32:06 +00:00
else
ifndef LIBTOOL
ifeq ($(PLATFORM), Darwin)
TGTLIBTOOL:=glibtool
else
TGTLIBTOOL:=libtool
endif
2017-05-02 08:34:16 +00:00
else
2019-06-03 07:32:06 +00:00
TGTLIBTOOL=$(LIBTOOL)
2017-05-02 08:34:16 +00:00
endif
endif
2019-06-03 07:32:06 +00:00
2017-09-26 18:06:32 +00:00
ifeq ($(PLATFORM), CYGWIN)
NO_UNDEFINED:=-no-undefined
endif
2019-06-03 07:32:06 +00:00
LTCOMPILE = $(TGTLIBTOOL) --mode=compile --tag=CC $(CC)
INSTALL_CMD = $(TGTLIBTOOL) --mode=install install
UNINSTALL_CMD = $(TGTLIBTOOL) --mode=uninstall rm
2004-10-30 03:00:26 +00:00
#Output filenames for various targets.
2005-08-01 16:36:47 +00:00
ifndef LIBNAME
LIBNAME=libtomcrypt.la
endif
2017-05-10 09:56:52 +00:00
include makefile_include.mk
2013-09-03 12:27:32 +00:00
#ciphers come in two flavours... enc+dec and enc
2004-12-30 23:55:53 +00:00
src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
2017-07-10 09:48:05 +00:00
$(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o
2004-10-30 03:00:26 +00:00
.c.o:
2017-07-10 09:48:05 +00:00
$(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -o $@ -c $<
2005-11-18 05:15:37 +00:00
LOBJECTS = $(OBJECTS:.o=.lo)
$(LIBNAME): $(OBJECTS)
$(TGTLIBTOOL) --mode=link --tag=CC $(CC) $(LTC_LDFLAGS) $(LOBJECTS) $(EXTRALIBS) -o $@ -rpath $(LIBPATH) -version-info $(VERSION_LT) $(NO_UNDEFINED)
2017-05-02 18:47:00 +00:00
2017-07-14 10:18:51 +00:00
test: $(call print-help,test,Builds the library and the 'test' application to run all self-tests) $(LIBNAME) $(TOBJECTS)
$(TGTLIBTOOL) --mode=link --tag=CC $(CC) $(LTC_LDFLAGS) -o $(TEST) $(TOBJECTS) $(LIBNAME) $(EXTRALIBS)
2005-04-17 11:37:13 +00:00
# build the demos from a template
define DEMO_template
2017-07-14 10:18:51 +00:00
$(1): $(call print-help,$(1),Builds the library and the '$(1)' demo) demos/$(1).o $$(LIBNAME)
$$(TGTLIBTOOL) --mode=link --tag=CC $$(CC) $$(LTC_LDFLAGS) $$^ $$(EXTRALIBS) -o $(1)
endef
$(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo))))
install: $(call print-help,install,Installs the library + headers + pkg-config file) .common_install
2017-07-14 10:18:51 +00:00
sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION_PC),' libtomcrypt.pc.in > libtomcrypt.pc
install -p -d $(DESTDIR)$(LIBPATH)/pkgconfig
install -p -m 644 libtomcrypt.pc $(DESTDIR)$(LIBPATH)/pkgconfig/
2017-07-14 10:18:51 +00:00
install_bins: $(call print-help,install_bins,Installs the useful demos ($(USEFUL_DEMOS))) .common_install_bins
uninstall: $(call print-help,uninstall,Uninstalls the library + headers + pkg-config file) .common_uninstall
2017-07-14 10:18:51 +00:00
rm $(DESTDIR)$(LIBPATH)/pkgconfig/libtomcrypt.pc
2017-06-19 11:43:49 +00:00
# ref: $Format:%D$
# git commit: $Format:%H$
# commit time: $Format:%ai$