home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / ROBOT02.ZIP / RCCL120 < prev    next >
Encoding:
Text File  |  1987-03-02  |  267 b   |  14 lines

  1. CFLAGS=-O
  2. OBJS=acos.o asin.o atan.o cbrt.o pow.o exp.o log.o sin.o \
  3.       sinh.o sqrt.o tan.o tanh.o
  4.  
  5. libnm.a : $(OBJS)
  6.     ar r libnm.a $(OBJS)
  7.  
  8. install:
  9.     mv libnm.a ${DESTDIR}/usr/lib/libnm.a
  10.     ranlib ${DESTDIR}/usr/lib/libnm.a
  11.  
  12. clean:
  13.     rm -f *.o libnm.a
  14.