home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v5.zip / TOOLKT21 / ASM / SAMPLES / PDD / PDD.MAK < prev    next >
Makefile  |  1993-03-12  |  2KB  |  64 lines

  1. #===================================================================
  2. #
  3. #
  4. #   Copyright 1990,1992 IBM Corporation
  5. #
  6. #===================================================================
  7.  
  8. #
  9. # Comment out or delete the .inc file you don't want
  10. #
  11. #===================================================================
  12. #
  13. #   A list of all of the object files
  14. #
  15. #===================================================================
  16.  
  17. AOBJ = pddddm.OBJ pddidc.obj pddinit.obj
  18.  
  19.  
  20.  
  21. #-------------------------------------------------------------------
  22. #   This section lists all files to be built by the make.
  23. #-------------------------------------------------------------------
  24. all: $(AOBJ) pdd.lnk pdd.sys
  25.  
  26.  
  27.  
  28. #-------------------------------------------------------------------
  29. #   This section creates the command file used by the linker.  This
  30. #   command file is recreated automatically every time you change
  31. #   the object file list, linker flags, or library list.
  32. #-------------------------------------------------------------------
  33.  
  34.  
  35. #===================================================================
  36. #
  37. # Dependencies
  38. #
  39. #   This section lists all object files needed to be built for the
  40. #   application, along with the files it is dependent upon (e.g. its
  41. #   source and any header files).
  42. #
  43. #===================================================================
  44.  
  45. pddddm.obj: pddddm.asm
  46.  
  47. pddidc.obj: pddidc.asm
  48.  
  49. pddinit.obj: pddinit.asm
  50.  
  51.  
  52. pdd.lnk: pdd.mak
  53.         echo $(AOBJ)   >  pdd.lnk
  54.         echo pdd.sys   >> pdd.lnk
  55.         echo pdd.map,os2286, >> pdd.lnk
  56.         echo pdd.def;  >> pdd.lnk
  57.  
  58.  
  59.  
  60.  
  61. pdd.sys:  $(AOBJ) pdd.def pdd.lnk
  62.           link386  @pdd.lnk
  63.  
  64.