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

  1. LIBDIR=/a/haywardv/l
  2. CFLAGS=-O
  3. OBJS=atan.o sin.o sqrt.o asin.o acos.o
  4.  
  5.  
  6. install: $(OBJS)
  7.     rm -f $(LIBDIR)/xfm.a
  8.     ar r $(LIBDIR)/xfm.a $(OBJS)
  9.     ranlib $(LIBDIR)/xfm.a
  10.  
  11. clean:
  12.     rm -f *.o libfm.a
  13.