home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8707 / 56 / makefile < prev    next >
Encoding:
Makefile  |  1990-07-13  |  228 b   |  15 lines

  1. include /usr/include/Makepre.h
  2.  
  3. CFLAGS= -DMAILER=\"/usr/local/bin/elm\" 
  4. LDFLAGS = 
  5.  
  6. email:    email.o
  7.     $(LD) $(LDFLAGS) $(SHAREDLIB) -o email email.o
  8.     strip email
  9.  
  10. install:    email
  11.     cp email /usr/bin/email
  12.  
  13. clean:    
  14.     rm -f *.o email
  15.