home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / netlog-1.02 / lib / Makefile < prev    next >
Encoding:
Makefile  |  1993-06-17  |  234 b   |  14 lines

  1. SRC=nit.c timeval.c hosts.c misc.c getif.c
  2. OBJ=$(SRC:.c=.o)
  3.  
  4. INCLUDE=-I../include
  5. CFLAGS=$(INCLUDE)
  6.  
  7. libsupport.a: $(OBJ)
  8.     $(RM) -f libsupport.a
  9.     $(AR) rc libsupport.a $(OBJ)
  10.     ranlib libsupport.a
  11.  
  12. clean:
  13.     $(RM) -f $(OBJ) libsupport.a
  14.