2004-10-29 23:00:26 -04:00
|
|
|
# MAKEFILE for linux GCC
|
|
|
|
#
|
2004-12-30 18:55:53 -05:00
|
|
|
# This makefile produces a shared object and requires libtool to be installed.
|
|
|
|
#
|
2013-09-03 08:27:32 -04:00
|
|
|
# Thanks to Zed Shaw for helping debug this on BSD/OSX.
|
2004-10-29 23:00:26 -04:00
|
|
|
# Tom St Denis
|
2017-05-10 05:56:52 -04:00
|
|
|
#
|
|
|
|
# (GNU make only)
|
2004-10-29 23:00:26 -04:00
|
|
|
|
2017-06-13 08:57:07 -04:00
|
|
|
### USAGE:
|
|
|
|
#
|
|
|
|
# CFLAGS="-DUSE_LTM -DLTM_DESC -I/path/to/libtommath" make -f makefile.shared all EXTRALIBS=/path/to/libtommath/libtommath.a
|
|
|
|
# ./test
|
2017-06-19 06:20:37 -04:00
|
|
|
# make -f makefile.shared PREFIX=/opt/libtom install
|
2017-06-13 08:57:07 -04:00
|
|
|
#
|
|
|
|
|
2017-06-13 06:25:25 -04:00
|
|
|
PLATFORM := $(shell uname | sed -e 's/_.*//')
|
|
|
|
|
2017-05-02 04:34:16 -04:00
|
|
|
ifndef LT
|
|
|
|
ifeq ($(PLATFORM), Darwin)
|
|
|
|
LT:=glibtool
|
|
|
|
else
|
|
|
|
LT:=libtool
|
|
|
|
endif
|
|
|
|
endif
|
2014-07-14 08:26:41 -04:00
|
|
|
LTCOMPILE = $(LT) --mode=compile --tag=CC $(CC)
|
2017-05-08 18:07:22 -04:00
|
|
|
INSTALL_CMD = $(LT) --mode=install install
|
2004-10-29 23:00:26 -04:00
|
|
|
|
|
|
|
#Output filenames for various targets.
|
2005-08-01 12:36:47 -04:00
|
|
|
ifndef LIBNAME
|
|
|
|
LIBNAME=libtomcrypt.la
|
|
|
|
endif
|
|
|
|
|
2017-05-10 05:56:52 -04:00
|
|
|
|
|
|
|
include makefile_include.mk
|
|
|
|
|
|
|
|
|
2013-09-03 08:27:32 -04:00
|
|
|
#ciphers come in two flavours... enc+dec and enc
|
2004-12-30 18:55:53 -05:00
|
|
|
src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
|
2017-05-02 14:47:00 -04:00
|
|
|
$(LTCOMPILE) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o
|
2004-10-29 23:00:26 -04:00
|
|
|
|
2014-07-14 08:26:41 -04:00
|
|
|
.c.o:
|
|
|
|
$(LTCOMPILE) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ -c $<
|
2005-11-18 00:15:37 -05:00
|
|
|
|
2014-07-14 08:26:41 -04:00
|
|
|
$(LIBNAME): $(OBJECTS)
|
2017-05-29 08:58:07 -04:00
|
|
|
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) `find ./src -type f -name "*.lo" | LC_ALL=C sort` $(EXTRALIBS) -o $@ -rpath $(LIBPATH) -version-info $(VERSION_LT)
|
2017-05-02 14:47:00 -04:00
|
|
|
|
2017-05-08 18:07:22 -04:00
|
|
|
install: .common_install
|
2017-06-19 06:20:37 -04:00
|
|
|
sed -e 's,^prefix=.*,prefix=$(PREFIX),' -e 's,^Version:.*,Version: $(VERSION),' libtomcrypt.pc.in > libtomcrypt.pc
|
2017-05-08 18:07:22 -04:00
|
|
|
install -d $(LIBPATH)/pkgconfig
|
|
|
|
install -m 644 libtomcrypt.pc $(LIBPATH)/pkgconfig/
|
2004-10-29 23:00:26 -04:00
|
|
|
|
2017-05-08 18:07:22 -04:00
|
|
|
install_bins: .common_install_bins
|
2017-05-07 16:30:59 -04:00
|
|
|
|
2017-06-05 09:51:29 -04:00
|
|
|
test: $(LIBNAME) $(TOBJECTS)
|
|
|
|
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $(TEST) $(TOBJECTS) $(LIBNAME) $(EXTRALIBS)
|
2005-04-17 07:37:13 -04:00
|
|
|
|
2017-06-08 05:54:38 -04:00
|
|
|
timing: $(TIMINGS) $(LIBNAME)
|
2017-06-05 09:51:29 -04:00
|
|
|
$(LT) --mode=link --tag=CC $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $(TIMING) $^ $(EXTRALIBS)
|
2005-04-17 07:37:13 -04:00
|
|
|
|
2017-03-22 20:13:43 -04:00
|
|
|
# build the demos from a template
|
|
|
|
define DEMO_template
|
2017-06-08 05:54:38 -04:00
|
|
|
$(1): demos/$(1).o $$(LIBNAME)
|
2017-03-22 20:13:43 -04:00
|
|
|
ifneq ($V,1)
|
|
|
|
@echo " * $${CC} $$@"
|
|
|
|
endif
|
2017-05-05 09:35:06 -04:00
|
|
|
$$(LT) --mode=link --tag=CC $$(CC) $$(CFLAGS) $$(CPPFLAGS) $$(LDFLAGS) $$^ $$(EXTRALIBS) -o $(1)
|
2017-03-22 20:13:43 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo))))
|
|
|
|
|
2017-06-19 07:43:49 -04:00
|
|
|
# ref: $Format:%D$
|
|
|
|
# git commit: $Format:%H$
|
|
|
|
# commit time: $Format:%ai$
|