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.
19 lines
388 B
Makefile
19 lines
388 B
Makefile
# Copyright 2021, pEp Foundation
|
|
#
|
|
# This file may be used under the terms of the GNU General Public License version 3
|
|
# see ../LICENSE.txt
|
|
|
|
######### Header #########
|
|
HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
|
|
|
|
|
|
# Build config
|
|
# Defaults
|
|
PREFIX?=$(HOME)
|
|
YML2_PATH=$(HOME)/yml2
|
|
YML2_PROC=$(YML2_PATH)/yml2proc $(YML2_OPTS)
|
|
YML2_OPTS=--encoding=utf8
|
|
|
|
# Overrides
|
|
-include $(HERE)local.conf
|