Privacy and Security Notice

Archived Messages for EGN_CALCOM_1996@cebaf.gov: from Jay, broken makefile fix

from Jay, broken makefile fix

BROOKSW@CEBAF.GOV
Thu, 23 May 1996 09:09:48 -0500 (EST)

From: IN%"muguira@clas01.cebaf.gov" "James Muguira" 22-MAY-1996 16:21:28.97
To: IN%"roudot@clas01.cebaf.gov"
CC: IN%"freyberg@CEBAF.GOV" "Arne Freyberger", IN%"brooksw@CEBAF.GOV"
Subj: fix bug in makefile template...

Return-path: <muguira@clas01.cebaf.gov>
Received: from clas01.cebaf.gov by CEBAF.GOV (PMDF V5.0-5 #9103)
id <01I50GS9N60W9EFZ57@CEBAF.GOV>; Wed, 22 May 1996 16:21:25 -0500 (EST)
Received: by clas01.cebaf.gov (5.65/DEC-Ultrix/4.3) id AA08658; Wed,
22 May 1996 16:21:19 -0400
Date: Wed, 22 May 1996 16:21:18 -0400 (EDT)
From: James Muguira <muguira@clas01.cebaf.gov>
Subject: fix bug in makefile template...
To: roudot@clas01.cebaf.gov
Cc: Arne Freyberger <freyberg@CEBAF.GOV>, brooksw@CEBAF.GOV
Message-id: <Pine.ULT.3.91.960522161634.8632A-100000@clas01>
MIME-version: 1.0
Content-type: TEXT/PLAIN; charset=US-ASCII
Content-transfer-encoding: 7BIT

I fixed a bug in the makefile template !!!!!!!!!!!!!!!!!

(Will please dissiminate)

in the INCPATH variable in your imports.imp you'll see a :=

like so,

INCPATH := ../ ...

change to

INCPATH += -I../ ...

Each item in the make macro INCPATH *HAS* to have -I in front of it. I
fixed a bug in the system template.

for example in recsis/recsis/hpf77.plt/imports.imp you'll find

INCPATH := ../../include -I../../ec.lib/s #for f77

currently. You need to change this to:

INCPATH += -I../../include -I../../ec.lib/s #for f77

JAM