# # 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.14 1996/02/22 18:39:13 karavan # added circularBuffer class # # Revision 1.13 1996/02/16 20:09:08 tamches # added pathName # # Revision 1.12 1996/01/11 03:43:53 tamches # added odometer # # Revision 1.11 1995/12/20 18:33:00 newhall # added makenan.C # # Revision 1.10 1995/12/09 05:06:19 tamches # added Timer.C # # Revision 1.9 1995/12/08 05:51:16 tamches # added PriorityQueue # # 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 \ ../src/Timer.C \ ../src/makenan.C \ ../src/pathName.C \ ../src/PriorityQueue.C \ ../src/odometer.C \ ../src/CircularBuffer.C OBJS += String.o DictionaryLite.o \ lprintf.o rpcUtil.o aggregateSample.o \ stringPool.o hist.o timing.o \ makenan.o pathName.o \ PriorityQueue.o CircularBuffer.o SRCS2 += rpcUtilPVM.C OBJS2 += rpcUtilPVM.o all: $(TARGET) $(TARGET2)