# # Common makefile template for util library. This file is not # intended to be a useful Makefile in isolation; instead, it should be # included from within an architecture-specific Makefile. # # $Log: make.module.tmpl,v $ # Revision 1.8 1995/11/06 19:21:43 tamches # added dictionaryLite # # Revision 1.7 1995/07/16 03:28:31 tamches # Split string class into a .h and .C component; strings can now # automatically convert numerical representations. # # Revision 1.6 1995/04/06 22:19:28 jcargill # Moved setting of INSTANTIATE_TEMPLATES down into arch-specific Makefiles, # since it must be set before make.config is read. # # Revision 1.5 1995/04/05 20:24:12 jcargill # Removed CXXFLAGS brokenness; added INSTANTIATE_TEMPLATES instead # # Revision 1.4 1995/03/11 06:02:19 krisna # library name change to include pd- prefix # # Revision 1.3 1995/02/27 18:17:39 tamches # Removed tunable constant files from the util-lib # # Revision 1.2 1995/02/16 09:21:22 markc # Added template support # # Revision 1.1 1995/01/30 18:11:52 jcargill # Major build system reorganization # # TARGET = libpdutil.a TARGET2 = libpdutilPVM.a SRCS += ../src/String.C \ ../src/DictionaryLite.C \ ../src/lprintf.C \ ../src/rpcUtil.C \ ../src/aggregateSample.C \ ../src/stringPool.C \ ../src/hist.C \ ../src/timing.C OBJS += String.o DictionaryLite.o \ lprintf.o rpcUtil.o aggregateSample.o \ stringPool.o hist.o timing.o SRCS2 += rpcUtilPVM.C OBJS2 += rpcUtilPVM.o all: $(TARGET) $(TARGET2)