home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1730 / Makefile next >
Encoding:
Makefile  |  1990-12-28  |  510 b   |  22 lines

  1. # @(#) $Header: Makefile,v 1.3 90/08/27 19:46:15 leres Exp $ (LBL)
  2.  
  3. INCL= -I../include
  4. CFLAGS= -g ${INCL}
  5. #CC= gcc -g -fstrength-reduce -fcombine-regs -finline-functions -fpcc-struct-return
  6. LIBS= ../libcnews.a
  7.  
  8. all: uniqmsgid
  9.  
  10. uniqmsgid: uniqmsgid.c
  11.     ${CC} ${CFLAGS} uniqmsgid.c -o uniqmsgid ${LIBS}
  12.  
  13. install: uniqmsgid
  14.     install -m 775 uniqmsgid /usr/new/lib/news/bin
  15.  
  16. shar:
  17.     shar -v -c -p X Makefile uniqmsgid.8 uniqmsgid.c PATCH.anne.jones > \
  18.         uniqmsgid.shar
  19.  
  20. clean:
  21.     rm -f uniqmsgid uniqmsgid.shar *.o
  22.