home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample15 / emx.MAK next >
Encoding:
Makefile  |  1998-01-14  |  421 b   |  24 lines

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