@profoundlogic/codermake 2.0.6 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/bin/index.js +1 -1
- package/dist/bin/preprocess-rpg-copy.js +1 -1
- package/dist/bin/rdf-to-dds.js +1 -1
- package/dist/lib/discovery.js +1 -1
- package/dist/lib/ejs-to-dds.js +1 -1
- package/dist/lib/executor.js +1 -1
- package/dist/lib/generate-rdf-dds.js +1 -1
- package/dist/lib/license.js +1 -1
- package/dist/lib/makefile-generator.js +1 -1
- package/dist/lib/platform.js +1 -1
- package/dist/lib/preprocessor.js +1 -1
- package/dist/lib/rdf-to-post-data.js +1 -1
- package/dist/lib/rpg-copy-preprocessor.js +1 -1
- package/dist/lib/ssh.js +1 -1
- package/dist/lib/writer.js +1 -1
- package/dist/makefiles/base.mk +22 -5
- package/dist/makefiles/ibmi.mk +61 -29
- package/dist/makefiles/unix.mk +74 -30
- package/package.json +1 -1
- package/skills/codermake/SKILL.md +4 -0
- package/skills/codermake/references/compile-listings.md +2 -2
- package/skills/codermake/references/file-types.md +19 -0
|
@@ -215,6 +215,25 @@ report.file: report.prtf
|
|
|
215
215
|
|
|
216
216
|
**CL command:** `CRTPRTF FILE(LIB/REPORT) SRCFILE(LIB/QDDSSRC)`
|
|
217
217
|
|
|
218
|
+
### System/38 compatible DDS (.pf38, .lf38, .dspf38, .prtf38)
|
|
219
|
+
|
|
220
|
+
System/38 compatible versions of `.pf`, `.lf`, `.dspf`, and `.prtf`. They build
|
|
221
|
+
through dedicated recipes that qualify the compile command from `QSYS38`. The
|
|
222
|
+
parameters currently match the base DDS recipes, but the commands are
|
|
223
|
+
`QSYS38/CRTPF`, `QSYS38/CRTLF`, `QSYS38/CRTDSPF`, and `QSYS38/CRTPRTF`. The
|
|
224
|
+
temporary source member's source type is derived from the file extension:
|
|
225
|
+
`.pf38` → `PF38`, `.lf38` → `LF38`, `.dspf38` → `DSPF38`, `.prtf38` → `PRTF38`.
|
|
226
|
+
Use these when a source member must retain its System/38 source type.
|
|
227
|
+
|
|
228
|
+
```makefile
|
|
229
|
+
custp38.file: custp38.pf38 # QSYS38/CRTPF, PF38 member
|
|
230
|
+
custl38.file: custl38.lf38 custp38.file # QSYS38/CRTLF, LF38 member
|
|
231
|
+
hello38.file: hello38.dspf38 # QSYS38/CRTDSPF, DSPF38 member
|
|
232
|
+
rpt38.file: rpt38.prtf38 # QSYS38/CRTPRTF, PRTF38 member
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
**CL commands:** `QSYS38/CRTPF` / `QSYS38/CRTLF` / `QSYS38/CRTDSPF` / `QSYS38/CRTPRTF`
|
|
236
|
+
|
|
218
237
|
### SQL table from .table.sql
|
|
219
238
|
|
|
220
239
|
Creates a SQL table by running a DDL script.
|