home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-08-16 | 542 b | 34 lines |
- #
- # makefile for directory user-contributed/lbl/hips/libsrc
- #
-
- LIBNAME = libhipslbl.a
-
- OBJECTS = \
- h_addmask.o h_bclean2.o h_bthin.o h_fill_holes.o
-
- .c.o:
- $(COMPILEc) $*.c
- @-ld -x -r $*.o
- @mv a.out $*.o
-
- $(LIBNAME): $(OBJECTS)
- @rm -f $(LIBNAME)
- ar cr $(LIBNAME) `$(LORDER) *.o | $(TSORT)`;
- mv $(LIBNAME) $(LIBDIR)/$(LIBNAME)
- $(RANLIB) $(LIBDIR)/$(LIBNAME)
- @touch $(LIBNAME)
-
- install: $(LIBNAME)
-
- clean:
- rm -f $(OBJECTS) $(LIBNAME)
- clean-all: clean_all
-
- pristine:
- rm -f $(OBJECTS) $(LIBNAME) $(LIBDIR)/$(LIBNAME)
-
- man:
-
- doc:
-