home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / makedce.zip / EXAMPLES.ZIP / examples / Binop / Makefile < prev    next >
Makefile  |  1994-05-08  |  740b  |  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 = binop
  15. MANAGER = manager
  16. APFFILE = binop
  17. #
  18. IDLFILE = binop
  19. CLIENT  = client
  20. SERVER  = server
  21. #
  22. NEED_AUX_FILES =
  23. #
  24. OTHER_CLIENT_OFILES =  
  25. OTHER_SERVER_OFILES = 
  26. OTHER_PROGRAM_FILES =
  27. PROGRAM_OFILES       =  $(PROGRAM).obj $(MANAGER).obj $(OTHER_PROGRAM_OFILES)
  28.  
  29.  
  30. !include ../rules.mak
  31.