source: trunk/src/kmk/testcase/nmakecond.mak@ 175

Last change on this file since 175 was 45, checked in by bird, 23 years ago

KMK changes..

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 517 bytes
Line 
1!ifndef MAKE
2!error "MAKE not defined!"
3!endif
4
5!if "$(MAKE)" == ""
6!error "MAKE not defined!"
7!endif
8
9# nmake syntax error:
10#!if $(MAKE) == ""
11#!error "MAKE not defined!"
12#!endif
13
14
15
16!if "$(__NOT_DEFINED_VARIABLE__)" != ""
17!error "__NOT_DEFINED_VARIABLE__ is defined!"
18!endif
19
20!if "$(__NOT_DEFINED_VARIABLE__)x" != "x"
21!error "__NOT_DEFINED_VARIABLE__+x is wrong!"
22!endif
23
24!if [echo ok]
25!endif
26
27
28!ifdef MAKE
29! include nmakeinclude.mak
30!else
31! include nonexistinginclude.mak
32!endif
33
34
35all: #comment
36# nothing
Note: See TracBrowser for help on using the repository browser.