On Apr 21, 2012, at 8:18 PM, Yuri wrote: > When I run 'make' on the following makefile, $@ gets printed but $< doesn't. > > Why? > > Yuri > > > --- Makefile --- > file-out: file-in > @echo "target=" $@ " src=" $<; touch $@
You want `$>`... .IMPSRC is something else…
Cheers,
-Garrett_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "[email protected]"

