home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / zfamily.zip / zfamily / ZNLFUNCS / SAMPLE / CTYINF.MAK < prev    next >
Text File  |  1993-09-21  |  2KB  |  49 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   : CTYINF.MAK
  18. #  Author   : Valerio Tavazzi(TAVAZZI at ROMEPPC)
  19. #  Reviewer : Dario de Judicibus (DEJUDICI at ROMEPPC)
  20. #  Created  : 13 Jul 1992
  21. #  Updated  : 21 Sep 1993
  22. #  Version  : 3.22
  23. #  Content  : FMZNLFUN Sample Makefile
  24. #
  25.  
  26. ZZZHEADERS = zzzlogo.h zzzlogo.rch
  27. ZZZLOGORSC = zzzlogo.rc zzzlogo.rch
  28. ZNLHEADERS = zgeneral.h znldefs.h znlproto.h znltypes.h
  29. TSTINCL_01 = tstabout.inc tstclose.inc tstexitw.inc tstntnl.inc     
  30. TSTINCL_02 = tstdate.inc tsttime.inc tstnum.inc tstcur.inc     
  31. TSTINCLUDE = $(TSTINCL_01) $(TSTINCL_02)
  32. TSTHEADERS = tstall.h tstdefs.h
  33. ALLHEADERS = $(ZNLHEADERS) $(TSTHEADERS) $(ZZZHEADERS)
  34. TSTOPTIONS = /Gm+ /Gd- /Se /Ss+ /Kb+ /Ms /I.\ /Tx+
  35.  
  36. ctyinf.exe : ctyinf.res ctyinf.def ctyinf.obj zzzlogo.obj ctyinf.mak
  37.      icc /Fe$* $(TSTOPTIONS) ctyinf.obj zzzlogo.obj ctyinf.def
  38.      rc ctyinf.res $*.exe
  39.  
  40. ctyinf.obj : ctyinf.c ctyinf.h $(ALLHEADERS) ctyinf.mak $(TSTINCLUDE)
  41.      icc /C+ $(TSTOPTIONS) ctyinf.c
  42.  
  43. ctyinf.res : ctyinf.rc ctyinf.rch $(ZZZLOGORSC) tstfuncs.rc
  44.      rc -r ctyinf.rc
  45.  
  46. zzzlogo.obj : zzzlogo.c $(ZZZHEADERS)
  47.      icc /C+ $(TSTOPTIONS) zzzlogo.c
  48.  
  49.