From: hades Date: Wed, 16 Aug 2000 14:41:42 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=bb6e201d3e8863f539e256213753c9998821811f;p=daqdata.git *** empty log message *** --- diff --git a/allParam/Makefile b/allParam/Makefile index d234903..c9bc52c 100644 --- a/allParam/Makefile +++ b/allParam/Makefile @@ -5,16 +5,16 @@ LIBDIR = $(HOME)/lib/$(SYSTYPE) INCDIR = $(HOME)/include ARFLAGS = -rc -PARAMLIBES = caParam tclParam ncaParam ntclParam fileParam psqlParam oraParam -CXXPARAMOBJS = ora/ora tcl/tcl tcl/struct file/file param/enh +PARAMLIBES = caParam fileParam tclParam oraParam psqlParam ncaParam ntclParam +CXXPARAMOBJS = file/file ora/ora tcl/tcl tcl/struct param/enh -VPATH = ca:tcl:nca:ntcl:file:psql:ora +VPATH = ca:file:ora:psql:tcl:nca:ntcl -all : c cxx +all : lib_c lib_cxx -c : $(patsubst %,lib%.a,$(PARAMLIBES)) +lib_c : $(patsubst %,lib%.a,$(PARAMLIBES)) -cxx : libcxxParam.a +lib_cxx : libcxxParam.a libcxxParam.a : $(patsubst %,%Param.o,$(CXXPARAMOBJS)) $(AR) $(ARFLAGS) $@ $? @@ -46,15 +46,20 @@ $(patsubst %Param,install_%,$(PARAMLIBES)) : clean : cd ca ; $(MAKE) $@ - cd tcl ; $(MAKE) $@ - cd param ; $(MAKE) $@ cd file ; $(MAKE) $@ + cd psql ; $(MAKE) $@ cd ora ; $(MAKE) $@ + cd tcl ; $(MAKE) $@ + cd nca ; $(MAKE) $@ + cd ntcl ; $(MAKE) $@ lib_clean : rm -f libcxxParam.a cd ca ; $(MAKE) $@ - cd tcl ; $(MAKE) $@ cd file ; $(MAKE) $@ + cd psql ; $(MAKE) $@ cd ora ; $(MAKE) $@ + cd tcl ; $(MAKE) $@ + cd nca ; $(MAKE) $@ + cd ntcl ; $(MAKE) $@