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

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