Newsgroups: comp.unix.questions
Path: utzoo!utgpu!news-server.csri.toronto.edu!torsqnt!lethe!druid!darcy
From: darcy@druid.uucp (D'Arcy J.M. Cain)
Subject: Re: Make and '#'
Message-ID: <1991May8.131613.10640@druid.uucp>
Organization: D'Arcy Cain Consulting, West Hill, Ontario
References: <470@mailgzrz.tu-berlin.de> <1991May7.202818.10562@ssd.kodak.com> <472@mailgzrz.tu-berlin.de>
Date: Wed, 8 May 91 13:16:13 GMT

In article <472@mailgzrz.tu-berlin.de> Lutz Jaenicke writes:
>In article <1991May7.202818.10562@ssd.kodak.com> weimer@ssd.kodak.com writes:
>>FCFLAGS = ... -W0,-inline,\#,-type ...
>I've tried before I posted, doesn't work on my Apollo :-(

Is it possible the problem is further down?  I tried:

TEST = 1 2 3 \# 4 5 6
test:
	echo $(TEST)

which ran the command:
	echo 1 2 3 # 4 5 6

Which displayed:
1 2 3

However the following:
TEST = 1 2 3 \\\# 4 5 6
test:
	echo $(TEST)

which ran the command:
	echo 1 2 3 \# 4 5 6

displayed:
1 2 3 # 4 5 6

Perhaps this is what you need.

With a name like mine you learn about quoting.  :-)

-- 
D'Arcy J.M. Cain (darcy@druid)     |
D'Arcy Cain Consulting             |   There's no government
Toronto, Ontario, Canada           |   like no government!
+1 416 424 2871                    |
