From b8fa714be73ff4ec9059e9be3abaab248b74024e Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Mon, 22 Jul 2019 12:01:12 -0400 Subject: [PATCH] move genmkfile appendix to bottom instead of top to not break the default make target --- Makefile | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/Makefile b/Makefile index cdd81c2..4046701 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,3 @@ -## genmkfile - Makefile - version 1.5 - -## This is a copy. -## master location: -## https://github.com/Whonix/genmkfile/blob/master/usr/share/genmkfile/Makefile - -GENMKFILE_PATH := $(strip $(wildcard /usr/share/genmkfile)) -GENMKFILE_ROOT_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) - -export GENMKFILE_PATH -export GENMKFILE_ROOT_DIR - --include $(GENMKFILE_PATH)/makefile-full - -## end genmkfile - CONFIG_NATIVE := true CONFIG_CXX_ALLOCATOR := true CONFIG_UBSAN := false @@ -135,3 +119,19 @@ clean: rm -f libhardened_malloc.so $(OBJECTS) .PHONY: clean tidy + +## genmkfile - Makefile - version 1.5 + +## This is a copy. +## master location: +## https://github.com/Whonix/genmkfile/blob/master/usr/share/genmkfile/Makefile + +GENMKFILE_PATH := $(strip $(wildcard /usr/share/genmkfile)) +GENMKFILE_ROOT_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST)))) + +export GENMKFILE_PATH +export GENMKFILE_ROOT_DIR + +-include $(GENMKFILE_PATH)/makefile-full + +## end genmkfile