You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/debian/rules

51 lines
1.7 KiB
Makefile

#!/usr/bin/make -f
# -*- makefile -*-
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
include /usr/share/dpkg/pkg-info.mk
include /usr/share/dpkg/architecture.mk
ifeq ($(DEB_TARGET_ARCH),$(filter $(DEB_TARGET_ARCH),amd64 i386))
DEB_CMAKE_ARCH_OPTIONS=-DCMAKE_CXX_FLAGS="-march=westmere -mtune=haswell" -DCMAKE_C_FLAGS="-march=westmere -mtune=haswell"
else ifeq ($(DEB_TARGET_ARCH),arm64)
DEB_CMAKE_ARCH_OPTIONS=-DNON_PC_TARGET=ON -DCMAKE_CXX_FLAGS="-march=armv8-a+crc -mtune=cortex-a72" -DCMAKE_C_FLAGS="-march=armv8-a+crc -mtune=cortex-a72"
else ifeq ($(DEB_TARGET_ARCH),armhf)
DEB_CMAKE_ARCH_OPTIONS=-DNON_PC_TARGET=ON -DCMAKE_CXX_FLAGS="-marm -march=armv6 -mtune=cortex-a53 -mfloat-abi=hard -mfpu=vfp" -DCMAKE_C_FLAGS="-marm -march=armv6 -mtune=cortex-a53 -mfloat-abi=hard -mfpu=vfp"
else
DEB_CMAKE_ARCH_OPTIONS=
endif
%:
dh $@ --buildsystem=cmake --with-systemd
ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif
ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS)
endif
override_dh_auto_configure:
dh_auto_configure -- -DCMAKE_BUILD_TYPE=Release -DRELEASE_MOTTO="$(shell cat motto.txt)" \
-DGIT_VERSION="$(DEB_VERSION)" \
$(DEB_CMAKE_ARCH_OPTIONS) \
-DUSE_AVX2=OFF
override_dh_installsystemd:
dh_installsystemd --name=lokinet
dh_installsystemd --name=lokinet-router
dh_installsystemd --name=lokinet-testnet --no-enable --no-start
dh_installsystemd --name=lokinet-testnet-router --no-enable --no-start
#override_dh_auto_test:
# make check