home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample14 / emx.MAK < prev    next >
Encoding:
Makefile  |  1998-03-10  |  435 b   |  23 lines

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