aboutsummaryrefslogtreecommitdiff
path: root/build/abspath.make
blob: c8224fcb653cc7e06a7c6c93a0a81e6251f1d6d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# file      : build/abspath.make
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2004-2011 Code Synthesis Tools CC
# license   : GNU GPL v2; see accompanying LICENSE file

.PHONY: FORCE

%:: FORCE
	@echo $(abspath $@)

$(MAKEFILE_LIST):: ;@:

# Remove all default rules.
#
.SUFFIXES:

ifeq ($(filter -r,$(MAKEFLAGS)),)
MAKEFLAGS += -r
endif