1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-27 17:58:13 +00:00
simplesshd/dropbear/libtomcrypt/makefile.shared

78 lines
2.6 KiB
Plaintext
Raw Normal View History

2014-12-10 21:56:49 +00:00
# MAKEFILE for linux GCC
#
# This makefile produces a shared object and requires libtool to be installed.
#
2019-06-09 20:44:26 +00:00
# Thanks to Zed Shaw for helping debug this on BSD/OSX.
2014-12-10 21:56:49 +00:00
# Tom St Denis
2019-06-09 20:44:26 +00:00
#
# (GNU make only)
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +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
#
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
PLATFORM := $(shell uname | sed -e 's/_.*//')
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
ifndef LIBTOOL
2019-06-09 20:44:26 +00:00
ifeq ($(PLATFORM), Darwin)
2020-12-28 21:40:37 +00:00
LIBTOOL:=glibtool
2019-06-09 20:44:26 +00:00
else
2020-12-28 21:40:37 +00:00
LIBTOOL:=libtool
2019-06-09 20:44:26 +00:00
endif
2014-12-10 21:56:49 +00:00
endif
2019-06-09 20:44:26 +00:00
ifeq ($(PLATFORM), CYGWIN)
NO_UNDEFINED:=-no-undefined
2014-12-10 21:56:49 +00:00
endif
2020-12-28 21:40:37 +00:00
LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(CC)
INSTALL_CMD = $(LIBTOOL) --mode=install install
UNINSTALL_CMD = $(LIBTOOL) --mode=uninstall rm
2014-12-10 21:56:49 +00:00
#Output filenames for various targets.
ifndef LIBNAME
LIBNAME=libtomcrypt.la
endif
2019-06-09 20:44:26 +00:00
include makefile_include.mk
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
#ciphers come in two flavours... enc+dec and enc
2014-12-10 21:56:49 +00:00
src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
2019-06-09 20:44:26 +00:00
$(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
.c.o:
$(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -o $@ -c $<
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
LOBJECTS = $(OBJECTS:.o=.lo)
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
$(LIBNAME): $(OBJECTS)
2020-12-28 21:40:37 +00:00
$(LIBTOOL) --mode=link --tag=CC $(CC) $(LTC_LDFLAGS) $(LOBJECTS) $(EXTRALIBS) -o $@ -rpath $(LIBPATH) -version-info $(VERSION_LT) $(NO_UNDEFINED)
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
test: $(call print-help,test,Builds the library and the 'test' application to run all self-tests) $(LIBNAME) $(TOBJECTS)
2020-12-28 21:40:37 +00:00
$(LIBTOOL) --mode=link --tag=CC $(CC) $(LTC_LDFLAGS) -o $(TEST) $(TOBJECTS) $(LIBNAME) $(EXTRALIBS)
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
# build the demos from a template
define DEMO_template
$(1): $(call print-help,$(1),Builds the library and the '$(1)' demo) demos/$(1).o $$(LIBNAME)
2020-12-28 21:40:37 +00:00
$$(LIBTOOL) --mode=link --tag=CC $$(CC) $$(LTC_LDFLAGS) $$^ $$(EXTRALIBS) -o $(1)
2019-06-09 20:44:26 +00:00
endef
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
$(foreach demo, $(strip $(DEMOS)), $(eval $(call DEMO_template,$(demo))))
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
install: $(call print-help,install,Installs the library + headers + pkg-config file) .common_install
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/
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
install_bins: $(call print-help,install_bins,Installs the useful demos ($(USEFUL_DEMOS))) .common_install_bins
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
uninstall: $(call print-help,uninstall,Uninstalls the library + headers + pkg-config file) .common_uninstall
rm $(DESTDIR)$(LIBPATH)/pkgconfig/libtomcrypt.pc
2014-12-10 21:56:49 +00:00
2019-06-09 20:44:26 +00:00
# ref: $Format:%D$
# git commit: $Format:%H$
# commit time: $Format:%ai$