home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / src / traceroute / vj_traceroute / Makefile < prev    next >
Makefile  |  1989-11-22  |  295b  |  14 lines

  1. INCL =
  2. CFLAGS = -O
  3. LIBS =
  4.  
  5. traceroute: traceroute.c
  6.     cc $(CFLAGS) $(INCL) -o traceroute traceroute.c $(LIBS)
  7.  
  8. install: traceroute
  9.     install -o root -g bin -m 4555 traceroute ${DESTDIR}/etc/traceroute 
  10.  
  11. lint:
  12.     lint -b -h -x $(INCL) traceroute.c | \
  13.       grep -v 'possible pointer alignment problem'
  14.