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

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