Skip to content

Commit 591e1a5

Browse files
hovercatsmichaelforney
authored andcommitted
pdpmake: new package at 2.0.4
1 parent feae6fc commit 591e1a5

5 files changed

Lines changed: 28 additions & 0 deletions

File tree

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,9 @@
264264
path = pkg/pciutils/src
265265
url = https://git.kernel.org/pub/scm/utils/pciutils/pciutils.git
266266
ignore = all
267+
[submodule "pkg/pdpmake/src"]
268+
path = pkg/pdpmake/src
269+
url = https://github.com/rmyorston/pdpmake
267270
[submodule "pkg/pigz/src"]
268271
path = pkg/pigz/src
269272
url = https://github.com/madler/pigz

pkg/gen.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ subgen 'opus'
9393
subgen 'pax'
9494
subgen 'pciutils'
9595
subgen 'pcre'
96+
subgen 'pdpmake'
9697
subgen 'perp'
9798
subgen 'pigz'
9899
subgen 'pixman'

pkg/pdpmake/gen.lua

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
cflags{
2+
'-std=c99',
3+
'-Wpedantic', '-Wall',
4+
}
5+
6+
exe('pdpmake', {
7+
'check.c',
8+
'input.c',
9+
'macro.c',
10+
'main.c',
11+
'make.c',
12+
'modtime.c',
13+
'rules.c',
14+
'target.c',
15+
'utils.c',
16+
})
17+
18+
file('bin/pdpmake', '755', '$outdir/pdpmake')
19+
20+
man{'pdpmake.1'}
21+
22+
fetch 'git'

pkg/pdpmake/src

Submodule src added at 0faaf25

pkg/pdpmake/ver

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.0.4

0 commit comments

Comments
 (0)