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

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