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

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