Make and '#'

D'Arcy J.M. Cain darcy at druid.uucp
Wed May 8 23:16:13 AEST 1991


In article <472 at mailgzrz.tu-berlin.de> Lutz Jaenicke writes:
>In article <1991May7.202818.10562 at ssd.kodak.com> weimer at 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 at druid)     |
D'Arcy Cain Consulting             |   There's no government
Toronto, Ontario, Canada           |   like no government!
+1 416 424 2871                    |



More information about the Comp.unix.questions mailing list