home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / binmail / Makefile.uxc < prev    next >
Encoding:
Makefile  |  1991-01-10  |  1.5 KB  |  51 lines

  1. #
  2. # Copyright (c) 1988 Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation,
  8. # advertising materials, and other materials related to such
  9. # distribution and use acknowledge that the software was developed
  10. # by the University of California, Berkeley.  The name of the
  11. # University may not be used to endorse or promote products derived
  12. # from this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14. # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15. # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. #    @(#)Makefile    5.5 (Berkeley) 9/20/88
  18. #
  19. CFLAGS=    -O -I.
  20. ALL=    mail
  21. SRCS=    binmail.c flock.c mktemp.c mhlock.c
  22. OBJS=    binmail.o
  23. MAN=    binmail.1
  24.  
  25. all: ${ALL}
  26.  
  27. mail: ${OBJS}
  28.     ${CC} ${CFLAGS} -o $@ ${OBJS}
  29.  
  30. clean:
  31.     rm -f core ${ALL} ${OBJS} 
  32.  
  33. cleandir: clean
  34.     rm -f tags .depend
  35.  
  36. depend: ${SRCS}
  37.     mkdep -p ${CFLAGS} ${SRCS}
  38.  
  39. install: ${ALL} ${MAN}
  40.     install -o -f ${DESTDIR}/bin -u root -g bin mail
  41.     chmod 4755 ${DESTDIR}/bin/mail
  42.     install -o -f ${DESTDIR}/usr/man/man1 -u bin -g bin binmail.1
  43.     (cd ${DESTDIR}/usr/man/man1; chmod 444 ${MAN})
  44. # DO NOT DELETE THIS LINE -- mkdep uses it.
  45. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  46.  
  47. binmail: pathnames.h
  48. flock: flock.h
  49.  
  50. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
  51.