Subversion Repositories DevTools

Rev

Rev 5709 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5709 Rev 6177
Line 1... Line 1...
1
###############################################################################
1
###############################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3
#
3
#
4
# File:         TOOLSET/ACEX.def
4
# File:         TOOLSET/ACEX.def
5
# Contents:     ACEX rules as used for the Fairchild ACE compiler
5
# Contents:     ACEX rules as used for the Fairchild ACE compiler
6
#               Make definitions for the ACE tools.
6
#               Make definitions for the ACE tools.
7
#
7
#
Line 28... Line 28...
28
    export GBE_ACEX
28
    export GBE_ACEX
29
endif
29
endif
30
 
30
 
31
.PHONY:     acex
31
.PHONY:     acex
32
acex:
32
acex:
33
	@if [ -z "$$GBE_ACEX" ]; then echo GBE_ACEX env var not set; exit 2; fi; \
33
	@if [ -z "$$GBE_ACEX" ]; then echo 'GBE_ACEX env var not set'; exit 2; fi; \
34
	if [ ! -d "$$GBE_ACEX" ]; then echo "ERROR: GBE_ACEX directory not found ($$GBE_ACEX). Compiler not available"; exit 2; fi; \
34
	if [ ! -d "$$GBE_ACEX" ]; then echo "ERROR: GBE_ACEX directory not found ($$GBE_ACEX). Compiler not available"; exit 2; fi; \
35
	echo "[Toolset Fairchild ACE]";
35
	echo "[Toolset Fairchild ACE]";
36
 
36
 
37
acex = $(subst \,/,$(strip $(GBE_ACEX)))
37
acex = $(subst \,/,$(strip $(GBE_ACEX)))
38
 
38