home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwplascr.zip / XWPL0208.ZIP / tools / makefile < prev    next >
Makefile  |  2000-01-04  |  768b  |  36 lines

  1. #
  2. # makefile:
  3. #       makefile for TOOLS\ directory.
  4. #       For use with IBM NMAKE, which comes with the IBM compilers,
  5. #       the Developer's Toolkit, and the DDK.
  6. #
  7. #       All the makefiles have been restructured with V0.9.0.
  8. #
  9. #       Called from:    main makefile
  10. #
  11. #       Input:          none
  12. #
  13. #       Output:         all XWorkplace tools as EXEs, in this directory.
  14. #
  15. #       Edit "setup.in" to set up the make process.
  16. #
  17.  
  18. # Say hello to yourself.
  19. !if [@echo +++++ Entering $(MAKEDIR)]
  20. !endif
  21.  
  22. all: repclass wpsreset
  23.     @echo ----- Leaving $(MAKEDIR)
  24.  
  25. repclass:
  26.     @cd repclass
  27.     @nmake -nologo all "MAINMAKERUNNING=YES"
  28.     @cd ..
  29.  
  30. wpsreset:
  31.     @cd wpsreset
  32.     @nmake -nologo all "MAINMAKERUNNING=YES"
  33.     @cd ..
  34.  
  35.  
  36.