# # Common makefile template for paradynd. This file is not intended to # be a useful Makefile in isolation; instead, it should be included # from within an architecture-specific Makefile. # # make.module.tmpl,v # Revision 1.5 1995/05/30 22:16:30 krisna # moved arch-os specific sources to appropriate directory # # Revision 1.4 1995/05/18 10:46:08 markc # Added new source files # # Revision 1.3 1995/03/11 06:03:52 krisna # libutil name change # # Revision 1.2 1995/02/16 08:26:31 markc # New support for templates # # Revision 1.1 1995/01/30 18:10:31 jcargill # Major build system reorganization # # TARGET = paradynd VPATH += ../../paradynd/src:../../paradyn/h SRCS += ../src/association.C \ ../src/ast.C \ ../src/comm.C \ ../src/context.C \ ../src/debugger.C \ ../src/dynrpc.C \ ../src/init.C \ ../src/inst.C \ ../src/main.C \ ../src/metric.C \ ../src/metricDefs-critPath.C \ ../src/perfStream-def.C \ ../src/perfStream.C \ ../src/primitives.C \ ../src/process.C \ ../src/resource.C \ ../src/stats.C \ ../src/symtab.C \ ../src/templates.C \ ../src/util.C \ ../src/mdl.C ifdef USES_PVM SRCS += ../src/pvm_support.C \ ../src/host_support.C \ ../src/task_support.C \ ../src/templatesPVM.C CXXFLAGS += -DPARADYND_PVM LIBS += -lpvm3 endif IGEN_GEN_SRCS = dyninstRPC.xdr.SRVR.C \ dyninstRPC.xdr.C IGEN_ISRCS = dyninstRPC.I LIBS += -lpdutil SYSLIBS += -liberty IFLAGS += -I../$(PLATFORM) -I../src # CXXFLAGS += $(USEFULWARNINGS) all: $(TARGET) templates.o: ../src/templates.C $(CXX) $(TFLAGS) -c ../src/templates.C