home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / makedce.zip / EXAMPLES.ZIP / examples / MClient / Makefile < prev    next >
Makefile  |  1994-05-08  |  774b  |  34 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 = mclient
  15. MANAGER1 = manager1
  16. MANAGER2 = manager2
  17. APFFILE = mclient
  18. #
  19. IDLFILE1 = $(MANAGER1)
  20. IDLFILE2 = $(MANAGER2)
  21. CLIENT  = client
  22. SERVER1  = server1
  23. SERVER2  = server2
  24. #
  25. NEED_AUX_FILES =
  26. #
  27. OTHER_CLIENT_OFILES =  
  28. OTHER_SERVER_OFILES = 
  29. OTHER_PROGRAM_FILES =
  30. PROGRAM_OFILES       =  dummy.obj
  31.  
  32. !include rules.mak
  33.  
  34.