home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Source / WAIS / bin / Makefile < prev    next >
Encoding:
Makefile  |  1992-02-03  |  159 b   |  17 lines

  1.  
  2.  
  3. # Makefile for the bin directory
  4.  
  5. EXE  = waisindex waisserver trunc
  6.  
  7. RM = rm -f
  8.  
  9. default: 
  10.  
  11. clean:
  12.     $(RM) *.o
  13.     $(RM) *.a
  14.     $(RM) *~
  15.     $(RM) core
  16.     $(RM) $(EXE)
  17.