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

  1.     include ..\emx.inc
  2.  
  3. OBJS=sample4.obj
  4.  
  5. all: sample4.exe
  6.  
  7. sample4.exe: $(OBJS) sample4.res
  8.     $(LINK) sample4.exe $(OBJS) $(LIBS) sample4.def
  9.     rc sample4.res sample4.exe
  10.  
  11. sample4.res: sample4.rc
  12.     rc -r sample4.rc
  13.  
  14. sample4.obj: sample4.cpp
  15.