Hi, I've done a little debugging and found that the problem came
**after** the doc stuff, narrowed it to the file

src/modules/Makefile

lines 51 & 52:

$(MODULES.pm.3rd-party)::       %:      %.tar.gz
                $(GZIP) -d -c $< | $(TAR) Bxvf -


I'm not sure what "%" does here. i'm sort of a newbe in Makefiles. Looks
like it should be "*" instead?



> > Making all in docs
> > make: don't know how to make %:. Stop
> > *** Error code 2
> >
> > In my make file:
> >
> > doc::
> >                 $(MAKE) docs SUBTARGET=
> >
> >
> > Is it ok that the SUBTARGET is empty?
>
> Yes, it is ok. We do a small trick. The variable SUBDIRS contains the
> directory docs. If you use "make docs SUBTARGET=" then the rule for the
> subdirs will be executed. $(SUBTARGET) is empty and so the command is:
>
> cd docs; make
>
> So I don't understand how is the "%" created. Please try "make docs
> SUBTARGET=" on the commandline. Perhaps there is a problem with your
> shell or make.
>
> Are there any other ideas?
>
> Michael
> --



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Openca-Users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/openca-users

Reply via email to