# # Makefile for ofstd/libsrc # @SET_MAKE@ SHELL = /bin/sh VPATH = @srcdir@:@top_srcdir@/include:@top_srcdir@/@configdir@/include srcdir = @srcdir@ top_srcdir = @top_srcdir@ configdir = @top_srcdir@/@configdir@ include $(configdir)/@common_makefile@ LOCALINCLUDES = LOCALDEFS = objs = oflist.o ofstring.o ofcmdln.o ofconapp.o offname.o ofconsol.o ofthread.o \ ofcond.o ofstd.o ofcrc32.o ofdate.o oftime.o ofdatime.o oftimer.o \ ofconfig.o ofchrenc.o oftempf.o ofxml.o ofuuid.o offile.o offilsys.o \ ofmath.o oferror.o ofsockad.o ofrand.o ofstrutl.o library = libofstd.$(LIBEXT) all: $(library) install: $(library) $(configdir)/mkinstalldirs $(DESTDIR)$(libdir) $(INSTALL_DATA) $(library) $(DESTDIR)$(libdir)/$(library) $(RANLIB) $(DESTDIR)$(libdir)/$(library) $(library): $(objs) $(AR) $(ARFLAGS) $@ $(objs) $(RANLIB) $@ clean: rm -f $(objs) $(library) $(TRASH) distclean: rm -f $(objs) $(library) $(DISTTRASH) dependencies: $(CXX) -MM $(defines) $(includes) $(CPPFLAGS) $(CXXFLAGS) *.cc > $(DEP) include $(DEP)