home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11tl.lha / lbl / hips / libsrc / makefile.src < prev   
Encoding:
Makefile  |  1993-08-16  |  542 b   |  34 lines

  1. #
  2. # makefile for directory user-contributed/lbl/hips/libsrc
  3. #
  4.  
  5. LIBNAME = libhipslbl.a
  6.  
  7. OBJECTS = \
  8.         h_addmask.o h_bclean2.o h_bthin.o h_fill_holes.o
  9.  
  10. .c.o:
  11.     $(COMPILEc) $*.c
  12.     @-ld -x -r $*.o
  13.     @mv a.out $*.o
  14.  
  15. $(LIBNAME):    $(OBJECTS)
  16.     @rm -f $(LIBNAME)
  17.     ar cr $(LIBNAME) `$(LORDER) *.o | $(TSORT)`;
  18.     mv $(LIBNAME) $(LIBDIR)/$(LIBNAME)
  19.     $(RANLIB) $(LIBDIR)/$(LIBNAME)
  20.     @touch $(LIBNAME)
  21.  
  22. install:    $(LIBNAME)
  23.  
  24. clean:
  25.     rm -f $(OBJECTS) $(LIBNAME)
  26. clean-all:    clean_all
  27.  
  28. pristine:
  29.     rm -f $(OBJECTS) $(LIBNAME) $(LIBDIR)/$(LIBNAME)
  30.  
  31. man:
  32.  
  33. doc:
  34.