This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Re: Inner classes and makefiles
- To: "Gregory R. Warnes" <warnes at biostat dot washington dot edu>
- Subject: Re: Inner classes and makefiles
- From: Nathan Meyers <nmeyers at javalinux dot net>
- Date: Thu, 25 May 2000 22:07:16 -0700
- Cc: gcj Discussion List <java-discuss at sourceware dot cygnus dot com>
- References: <Pine.GSO.4.21.0005251828270.4317-100000@atlas.biostat.washington.edu>
"Gregory R. Warnes" wrote:
> Has anyone found a clean way to get make to deal with inner classes?
>
> I can't seem to get inner classes to work with implicit rules. It seems
> that the "$" in the class name confuses make.
Try "$$" for every occurrence of "$"; the "$" is magic in make.
Nathan
>
>
> For the moment, I just explicitly compile all of the inner classes and
> list them explicitly for the link.
>
> Thanks,
>
> Greg