home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!sun-barr!olivea!sgigate!odin!xanadu.wpd.sgi.com!pal
- From: pal@xanadu.wpd.sgi.com (Anil Pal)
- Newsgroups: comp.sys.sgi
- Subject: Re: cvbuild problem in Workshop
- Message-ID: <1992Sep3.004501.22643@odin.corp.sgi.com>
- Date: 3 Sep 92 00:45:01 GMT
- References: <BtysG2.AsC@news.larc.nasa.gov>
- Sender: news@odin.corp.sgi.com (Net News)
- Reply-To: pal@wpd.sgi.com
- Organization: Silicon Graphics, Inc.
- Lines: 24
- Nntp-Posting-Host: xanadu.wpd.sgi.com
- Cc: alan@hal.larc.nasa.gov
-
- In article <BtysG2.AsC@news.larc.nasa.gov>, alan@hal.larc.nasa.gov (alan dare) writes:
- |>
- |> I having a problem with cvbuild under workshop. It will not correctly
- |> interpret my makefile.
- [...]
- |>
- |> $(OBJ_FILES) : $$R
- |> cc -c $(OPT) $R -o $@
-
- cvbuild is complaining about $$R. I find that make will accept this,
- but smake will not. cvbuild is aimed at recognizing smake syntax, so
- I'm not too surprised that it falls on the smake side of the fence on
- this one.
-
- Replacing the $$R with $$(R) seems to fix the problem:
-
- $(OBJ_FILES) : $$(R)
- cc -c $(OPT) $R -o $@
-
- is accepted by both make and cvbuild.
-
- --
- Anil A. Pal
- pal@sgi.com (415)-390-5279
-