home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 471 / rccl120 < prev    next >
Text File  |  1987-03-02  |  267b  |  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.