home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / zfamily.zip / zfamily / ZISFUNCS / SAMPLE / CHKFUN.MAK < prev    next >
Text File  |  1993-09-02  |  2KB  |  53 lines

  1. #
  2. # /----------------------------------------------------------------------\
  3. # |             IBM Z Family Reusable Libraries/2 (5641-504)             |
  4. # |----------------------------------------------------------------------|
  5. # | (C) Copyright International Business Machines Corporation 1993, 1994 |
  6. # |----------------------------------------------------------------------|
  7. # |                       DISCLAIMER OF WARRANTIES                       |
  8. # |                       ------------------------                       |
  9. # | The following code is sample code created by IBM Corporation.        |
  10. # | Such a code is provided to you solely for the purpose of assisting   |
  11. # | you in the development of your applications. The code is provided    |
  12. # | "AS IS", without warranty of any kind.  IBM shall not be liable for  |
  13. # | any damages arising out of your use of the following code, even if   |
  14. # | they have been advised of the possibility of such damages.           |                                                                         *
  15. # \----------------------------------------------------------------------/
  16. #
  17. #  Header   : CHKFUN.MAK
  18. #  Author   : Alessandro Cavallini (CAVALLI at ROMEPPC)
  19. #             Pino Venturella (VENTUREL at ROMEPPC)
  20. #  Reviewer : Dario de Judicibus (DEJUDICI at ROMEPPC)
  21. #  Created  : 08 Jul 1992
  22. #  Updated  : 22 Jul 1993
  23. #  Version  : 3.11
  24. #  Content  : Makefile for test program
  25. #
  26. #
  27.  
  28. ZZZHEADERS = zzzlogo.h zzzlogo.rch
  29. ZZZLOGORSC = zzzlogo.rc zzzlogo.rch
  30. TSTIFILES = tstinit.inc tstcheck.inc tsttype.inc tstinput.inc tstnotat.inc \
  31.             tstabout.inc tstclose.inc tstexit.inc tstexitw.inc
  32. ZISHFILES = zgeneral.h zisdefs.h zisproto.h
  33. TSTHFILES = tstall.h tstdefs.h tsttypes.h tstproto.h
  34.  
  35. OPTIONS = /Gm+ /Gd- /Se /Ss+ /Kb+ /I.\ /Tx+  
  36.  
  37. chkfun.exe : chkfun.res chkfun.def chkfun.obj tstfuncs.obj zzzlogo.obj
  38.      icc /Fe$* $(OPTIONS) chkfun.obj tstfuncs.obj zzzlogo.obj chkfun.def
  39.      rc chkfun.res $*.exe
  40.  
  41. chkfun.obj : chkfun.c chkfun.h $(TSTHFILES) $(ZISHFILES) $(TSTIFILES) $(ZZZHEADERS)
  42.      icc /C+ $(OPTIONS) chkfun.c
  43.  
  44. tstfuncs.obj : tstfuncs.c $(TSTHFILES) $(ZZZHEADERS)
  45.      icc /C+ $(OPTIONS) tstfuncs.c
  46.  
  47. chkfun.res : chkfun.rc chkfun.rch $(ZZZLOGORSC)
  48.      rc -r chkfun.rc
  49.  
  50. zzzlogo.obj : zzzlogo.c $(ZZZHEADERS)
  51.      icc /C+ $(OPTIONS) zzzlogo.c
  52.  
  53.