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

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