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

15 lines
244 B

HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
# Defaults
DEBUG=1
PREFIX?=$(HOME)
BUILD_DIR = ./build
######### Overrides #########
-include $(HERE)local.conf
ifeq ($(DEBUG),1)
BUILD_EXT_OPTS+=--debug
endif
BUILD_EXT_OPTS += --prefix=$(PREFIX)