home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / WINPROPM.ZIP / EXAMPLPM.MAK < prev    next >
Text File  |  1989-06-19  |  1KB  |  43 lines

  1. #--------------------------------------
  2. #make file for ExamplPM
  3. #--------------------------------------
  4.  
  5. #Compiler invocation and switches - Microsoft C 5.x
  6. CC = cl -c -G2sw -W2 -Zpe
  7.  
  8. #Specify the OS|2 Presentation Manager SDK linker
  9. LINK = link
  10.  
  11. #Specify the OS|2 Presentation Manager resource compiler
  12. RC = rc
  13.  
  14.  
  15. # Resource compiler
  16. ExamplPM.res:   ExamplPM.rc Examrc.h examplpm.ico
  17.     $(RC) -r ExamplPM.rc
  18.  
  19. # Main routines: WndProc, Command, etc.
  20. Exammain.obj:   Exammain.c Examrc.h Examgbl.h
  21.     $(CC) Exammain.c
  22.  
  23. # External global data elements
  24. Examext.obj:    Examext.c Examrc.h Examgbl.h
  25.     $(CC) Examext.c
  26.  
  27. # Initialization & window registration routines
  28. Examinit.obj:   Examinit.c Examrc.h Examgbl.h
  29.     $(CC) Examinit.c -NT _APPINIT
  30.  
  31. # Menu processing functions
  32. Exammenu.obj:   Exammenu.c Examrc.h Examgbl.h
  33.     $(CC) Exammenu.c -NT _APPDLGS;
  34.  
  35. # Dialog processing functions
  36. Examdlg.obj:    Examdlg.c Examrc.h Examgbl.h
  37.     $(CC) Examdlg.c -NT _APPDLGS;
  38.  
  39. ExamplPM.exe:    ExamplPM.mak Exammain.obj Examext.obj Exammenu.obj \
  40.  Examinit.obj Examdlg.obj ExamplPM.res ExamplPM.def 
  41.     $(LINK) @ExamplPM.lke
  42.     $(RC) ExamplPM.res
  43.