blob: 428608c37ac5d89818c6709b8cec623abb41ac00 (
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-2010 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
|