Before running the makefile, set the symbol INCDIR to the directory in which pmddamt.h and pmdcomt.h are stored. Set the symbol SRCDIR to the directory in which the sample source (or yours) is stored.
#********************************************************************** #* #* TITLE: amsample.mak - Sample Access Module MAKE #* #* This file builds a sample Access Module. #* #* Invoke this makefile directly. Do NOT use the toplevel makefile! #* This makefile is intended to be useable in customer environments. #* #********************************************************************** OBJS = amsample.o INCDIR = ../inc SRCDIR = ../src NESTINC = $(INCDIR)/pmdcomt.h \ $(INCDIR)/pmddamt.h CCFlags = -c -g -I$(INCDIR) amsample.so: $(OBJS) cc -G -g $(OBJS) -o amsample.so amsample.o: $(NESTINC) $(SRCDIR)/amsample.c cc $(CCFlags) $(SRCDIR)/amsample.c # DO NOT DELETE THIS LINE -- make depend depends on it.