aboutsummaryrefslogtreecommitdiff
path: root/build/abspath.make
blob: 2ec6865c68acf5a8545c2eb07348676ea27572f8 (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-2012 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