Cecilia Cabrera wrote:

------------------------------------------------------------------
When compiling, it told:

verify.c:98: syntax error before `static'

/* General definitions */
#ifdef PACKAGE_VERSION
static char *VER = PACKAGE_VERSION;
#else
static char *VER = "Unknown\x0" 	<-- ";" missing
#endif


static char *TITLE   = "SV Tool\x0"; 	<-- line 98

------------------------------------------------------------------------------------
Fixed in CVS, thanks.

Second:

Once this was solved it said:

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
--
-------------------------------------------------------------------
Michael Bell Email (private): [EMAIL PROTECTED]
Rechenzentrum - Datacenter Email: [EMAIL PROTECTED]
Humboldt-University of Berlin Tel.: +49 (0)30-2093 2482
Unter den Linden 6 Fax: +49 (0)30-2093 2959
10099 Berlin
Germany http://www.openca.org



-------------------------------------------------------
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