blob: e1ef8812786c523333dec8f14bdafde2088253ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# file : build/abspath.make
# 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
|