-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
convert Yips wiki pages to sphinx docs #40
Conversation
Signed-off-by: jimoibm <jimo@cn.ibm.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Conversion looks good, but currently doesn't build. Please fix.
Signed-off-by: jimoibm <jimo@cn.ibm.com> Changes to be committed: renamed: conf.py -> srcdir/conf.py
Signed-off-by: jimoibm <jimo@cn.ibm.com>
@kadler How can I get a account to login the Jekins? |
I've added you |
@kadler It seems
I tried on my 7.4 box with |
Aha! The xmlstoredp.sqlinst will result in the generic sqlinst rule running, but it has no dependency on xmlstoredp.srvpgm. Unfortunately, I don't think that we can create another rule that defines the prereq for the srvpgm and have make keep using the generic rule (from what I can tell, make will ignore the generic rule in that case -%.sqlinst: src/%.sql
+%.sqlinst: src/%.sql %.srvpgm
system -q "RUNSQLSTM SRCSTMF('$<')" && touch $@ |
@kadler The dependency you suggested looks working. But now I got this error:
Looks like %.lib was not done and then the other dependencies started executing. build-main, build-cgi... all have this problem on my box today. Does system crtlib command run in a child process and cause make not wait? |
Looks like all the build rules need to have a dependency on the library just like this one: https://github.com/IBM/xmlservice/blob/master/Makefile.in#L117 |
I tried adding dependency of creating library ahead, but it didn't work. I saw CRTLIB was ran ahead, but the following CRTMOD just failed with no library found. So I guessed make didn't wait for CRLIB done. |
The .lib dependency seems not working. I tried your Makefile.in also got this:
|
@kadler,
I have the draft done for the conversion for issue #19 .