home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample15 / va.mak < prev    next >
Encoding:
Makefile  |  1997-12-26  |  462 b   |  23 lines

  1. !include ..\va.inc
  2.  
  3. #Object files/libraries to link
  4. OBJS=sample15.obj
  5.  
  6.  
  7. #All files to build
  8. all:  sample15.exe
  9.  
  10. #Rules to build the application
  11. sample15.exe: $(OBJS) sample15.res
  12.    $(LINK) /Fe"sample15.exe" $(OBJS) $(LIBS) sample15.def
  13.    rc sample15.res sample15.exe
  14.  
  15. #Rules to build the resource-files
  16. sample15.res: sample15.rc\
  17.    resource.h\
  18.    sample15.ico
  19.    rc -r sample15.rc
  20.  
  21. #Dependencies
  22. sample15.obj: sample15.cpp\
  23.    sample15.h