home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / contrib / usr.x25 / nimd / Make.org < prev    next >
Encoding:
Text File  |  1988-04-13  |  463 b   |  26 lines

  1. CFLAGS=-DCCITT -c -O
  2.  
  3. nimd:    nim.o ../lib/x25lib.a buf.o commands.o x29.o
  4.     cc nim.o buf.o commands.o x29.o ../lib/x25lib.a -o nimd
  5.  
  6. install: nimd
  7.     install -c -m 740 -s nimd /etc/nimd
  8.  
  9. nim.o:    nim.c buf.h nim.h
  10.     cc ${CFLAGS} nim.c
  11.  
  12. buf.o:    buf.c buf.h
  13.     cc ${CFLAGS} buf.c
  14.  
  15. commands.o: commands.c nim.h
  16.     cc ${CFLAGS} commands.c
  17.  
  18. x29.o:    x29.c nim.h
  19.     cc ${CFLAGS} x29.c
  20.  
  21. lint:    /tmp
  22.     lint -hbaxu -DCCITT nim.c buf.c x29.c commands.c
  23.  
  24. clean:
  25.     rm -f core *.o *.CKP .emacs*
  26.