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

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