home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / basedemo / which / makefile.emx < prev    next >
Makefile  |  1995-03-29  |  266b  |  16 lines

  1.  
  2. include ../../control/emxmak.ctl
  3.  
  4. which: which.obj
  5.     $(CC) which.o -o which.exe  -L$(YACLLIB) -lbase  -lio \
  6.         -liostream
  7.  
  8.  
  9. which.obj: which.cxx
  10.     $(CC) $(CCOPTS) which.cxx
  11.         
  12.         
  13. clean:
  14.     rm -f *.o *.obj which which.exe *.map
  15.         
  16.