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

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