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

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