home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / makedce.zip / EXAMPLES.ZIP / examples / Array / Makefile < prev    next >
Makefile  |  1994-05-08  |  713b  |  31 lines

  1. #
  2. # Makefile for binop Application
  3. #
  4. # explenation of macros:
  5. #  --- origin files ----
  6. # PROGRAM :  program name & client '.c' file
  7. # MANAGER :  the server '.c' file (must be different then SERVER!)
  8. # APFFILE :  the aplication '.apf' file
  9. # --- generated files ---
  10. # IDLFILE :  name of .idl file
  11. # CLIENT  :  name for client files (including executable) 
  12. # SERVER  :  name for server files (including executable) 
  13. #
  14. PROGRAM = array
  15. MANAGER = manager
  16. APFFILE = array
  17. #
  18. IDLFILE = array
  19. CLIENT  = client
  20. SERVER  = server
  21. #
  22. NEED_AUX_FILES =
  23. #
  24. OTHER_CLIENT_OFILES = caux.obj
  25. OTHER_SERVER_OFILES = 
  26. OTHER_PROGRAM_OFILES = caux.obj
  27. PROGRAM_OFILES       =  dummy.obj
  28.  
  29.  
  30. !include ../rules.mak
  31.