home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample10 / VA.mak < prev    next >
Encoding:
Makefile  |  1998-01-18  |  382 b   |  21 lines

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