--- loncom/homework/caparesponse/Makefile.PL 2000/09/11 21:20:06 1.1 +++ loncom/homework/caparesponse/Makefile.PL 2000/10/24 13:46:19 1.6 @@ -11,10 +11,13 @@ # See "Programming Perl", 2nd. Ed, for more gory details than # you ever wanted to know. +$capadir = "../../../CAPA"; + use ExtUtils::MakeMaker; WriteMakefile( - 'NAME' => 'caparesponse', # Name of your module + 'NAME' => 'capa', # Name of your module + 'INC' => "-I$capadir/pProj", 'LIBS' => [''], # Custom libraries (if any) 'DEFINE' => '-g -Wall -O0 -D_GNU_SOURCE', - 'OBJECT' => 'caparesponse.o capaFunctions/*.o' # Object files + 'OBJECT' => 'capa_wrap.o caparesponse.o capaFunctions/*.o' # Object files );