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

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