home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample12 / emx.mak next >
Encoding:
Makefile  |  1998-03-10  |  210 b   |  15 lines

  1.     include ..\emx.inc
  2.  
  3. OBJS=sample12.obj
  4.  
  5. all:  sample12.exe
  6.  
  7.  
  8. #Rules to build the application
  9. sample12.exe: $(OBJS)
  10.     $(LINK) sample12.exe $(OBJS) $(LIBS)
  11.  
  12. #Dependencies
  13. sample12.obj: sample12.cpp
  14.  
  15.