################################################################################ # RCS-DESC LIBRARY SOURCES MAKEFILE # RCS-DESC # RCS-DESC This makefile is for the sources that make up the dump manager # RCS-DESC library. # $Id: Makefile.lib,v 1.2 1993/10/13 20:39:45 alexis Exp $ ################################################################################ ALLOBJS=keywords.o debug.o getline.o ltime.o usage.o cronstr.o INCLDIR=../include CFLAGS=-c -I$(INCLDIR) -g CC=gcc ################################################################################ all: libdump.a clean: rm -f $(ALLOBJS) libdump.a install: ################################################################################ libdump.a: $(ALLOBJS) ar r $@ $(ALLOBJS) keywords.o: $(INCLDIR)/dump_errs.h $(INCLDIR)/lib_exts.h debug.o: $(INCLDIR)/dump_errs.h $(INCLDIR)/lib_exts.h getline.o: $(INCLDIR)/dump_errs.h $(INCLDIR)/lib_exts.h usage.o: $(INCLDIR)/dump_errs.h cronstr.o: $(INCLDIR)/dump_errs.h ltime.o: $(ALLOBJS): $(INCLDIR)/local.h