home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xwphescr.zip / XWPH0208.ZIP / makefile < prev    next >
Makefile  |  2000-10-27  |  301b  |  19 lines

  1.  
  2. #
  3. # makefile:
  4. #
  5. #       simple makefile which basically only goes into the
  6. #       src\helpers subdirectory.
  7. #
  8.  
  9. PROJECT_BASE_DIR = $(MAKEDIR)
  10.  
  11. INCLUDE = $(PROJECT_BASE_DIR)\include\helpers;$(INCLUDE)
  12.  
  13. all:
  14.     @cd src\helpers
  15.     nmake -nologo "MAINMAKERUNNING=YES"
  16.     @cd ..\..
  17.  
  18.  
  19.