2 # $Id: Makefile,v 1.5 1998/04/01 02:33:14 wylie Exp $
5 # Define any symbols needed to invoke configuration changes in make.config
8 #USES_SHM_SAMPLING = true
10 # Include standard make configuration stuff that applies to everything
11 # in the paradyn tree.
13 include ../../nmake.config
15 # Now make any necessary architecture specific changes to variables:
18 LDFLAGS = -DLL -debug -debugtype:coff -base:0x60000000
20 #TARGET2 = libdyninstCP.a
22 SRCS = $(SRCS) ../src/RTfirst.c ../src/RTwinnt.c
24 OBJS = RTfirst.obj RTwinnt.obj
26 # Include the module-specific Makefile, which defines everything about
27 # the module that is common across architectures.
29 include ../nmake.module.tmpl
31 # Include the "standard program template". This defines all the
32 # common targets like "clean", "install", etc.
34 include ../../nmake.library.tmpl
40 # Override target to force ld to happen
44 $(LD) $(LDFLAGS) -EXPORT:DYNINSTinit -ENTRY:_DllMainCRTStartup@12 \
45 -out:$(TARGET) $(VOUCHER).obj $(OBJS) $(LIBS) wsock32.lib winmm.lib
47 #$(TARGET2): $(OBJS) RTpvmPiggy.o RTcriticalPath.o
49 # $(LD) $(LDFLAGS) -o $(TARGET2) $(OBJS) RTpvmPiggy.o RTcriticalPath.o $(LIBS)