Subversion Repositories DevTools

Rev

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

Rev 227 Rev 6177
Line 26... Line 26...
26
#
26
#
27
#   Ensure that the tools are available
27
#   Ensure that the tools are available
28
#
28
#
29
.PHONY:		KeilC51V41
29
.PHONY:		KeilC51V41
30
KeilC51V41:
30
KeilC51V41:
31
	@$(echo) [Toolset Keil C51v41::$(C51DIR)]; \
31
	@$(echo) '[Toolset Keil C51v41::$(C51DIR)]'; \
32
	[ -z "$$KEILC51" ] && echo KEILC51 env var not set && exit 2; \
32
	[ -z "$$KEILC51" ] && echo 'KEILC51 env var not set' && exit 2; \
33
	if [ ! -d "$(C51DIR)" ] ; then echo KeilC51 Directory not found: $(C51DIR);  exit 2; fi; \
33
	if [ ! -d "$(C51DIR)" ] ; then echo "KeilC51 Directory not found: $(C51DIR)";  exit 2; fi; \
34
	if [ ! -d "$(C51BIN)" ] ; then echo Keil Compiler directory not found: $(C51BIN); exit 2; fi; \
34
	if [ ! -d "$(C51BIN)" ] ; then echo "Keil Compiler directory not found: $(C51BIN)"; exit 2; fi; \
35
 
35
 
36
 
36
 
37
#
37
#