Subversion Repositories DevTools

Rev

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

Rev 227 Rev 6177
Line 13... Line 13...
13
 
13
 
14
.SUFFIXES:	.asm
14
.SUFFIXES:	.asm
15
 
15
 
16
.PHONY:		watcom
16
.PHONY:		watcom
17
watcom:
17
watcom:
18
	@$(echo) [Toolset DOS32 - Watcom C/C++ DOS4GW]; \
18
	@$(echo) '[Toolset DOS32 - Watcom C/C++ DOS4GW]'; \
19
	if [ -z "$$WATCOM" ]; then echo WATCOM env var not set; exit 2; fi; \
19
	if [ -z "$$WATCOM" ]; then echo 'WATCOM env var not set'; exit 2; fi; \
20
	if [ -z "$$MASM" ]; then echo MASM env var not set; exit 2; fi
20
	if [ -z "$$MASM" ]; then echo 'MASM env var not set'; exit 2; fi
21
 
21
 
22
watcom		:= $(subst \,/,$(strip $(WATCOM)))
22
watcom		:= $(subst \,/,$(strip $(WATCOM)))
23
masm		:= $(subst \,/,$(strip $(MASM)))
23
masm		:= $(subst \,/,$(strip $(MASM)))
24
 
24
 
25
ifeq "$(findstring $(PATH),$(WATCOM))" ""
25
ifeq "$(findstring $(PATH),$(WATCOM))" ""