home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample17 / va.mak < prev    next >
Encoding:
Makefile  |  1998-02-22  |  495 b   |  26 lines

  1. !include ..\va.inc
  2.  
  3. OBJS=sample17.obj
  4.  
  5.  
  6. #All files to build
  7. all:  sample17.EXE sample17.hlp
  8.  
  9. sample17.EXE: $(OBJS) sample17.res
  10.    $(LINK) /Fe"sample17.EXE" $(OBJS) $(LIBS) sample17.def
  11.    rc sample17.res sample17.EXE
  12.  
  13.  
  14. #Rules to build the resource-files
  15. sample17.res: sample17.rc\
  16.    resource.h\
  17.    sample17.ico
  18.    rc -r sample17.rc
  19.  
  20. #Rules to build the help-files
  21. sample17.hlp: sample17.ipf
  22.    ipfc sample17.ipf
  23.  
  24. #Dependencies
  25. sample17.obj: sample17.cpp\
  26.    sample17.h