home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-03-06 | 486 b | 25 lines |
- !ifdef clean
- makeopts = clean=1
- !endif # clean
-
- !ifdef nodebug
- makeopts = $(makeopts) nodebug=1
- !endif
-
- # If sample is installed, cd into that directory and recursively start nmake.
-
- all:
- !IF EXIST (CnfTest)
- cd CnfTest
- @$(MAKE) -nologo /$(MAKEFLAGS) $(makeopts)
- cd ..
- !ENDIF # exist (CnfTest)
- !IF EXIST (EZConf)
- cd EZConf
- @$(MAKE) -nologo /$(MAKEFLAGS) $(makeopts)
- cd ..
- !ENDIF # exist (EZConf)
-
- Clean:
- @nmake -nologo /$(MAKEFLAGS) $(makeopts) clean=1
-