makefile and temporary table for rpgle compilation #522
-
Hi, I have an Rpgle than use a file in qtemp, when it run before call the rpgle a clle create that file, usually when I have to compile it, I create that in qtemp than I make my compile. Trying to put into a makefile I tried with different approch, but no one works, I think my problem is relative to the thread where my command run. Here are some example: all: my.rpgle %.rpgle: the workfile.sql contain the create table in qtemp or: %.rpgle: the same with db2 instead of db2util... I always get a compile error about relative to my work file doesn't exit. Many thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The system command generally runs in a new job, so the user of |
Beta Was this translation helpful? Give feedback.
The system command generally runs in a new job, so the user of
QTEMP
is really possible in this case. You build a temporarily library for the build and then delete it when you're done?