mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Allow building games w/o an existing /usr/games.
This commit is contained in:
parent
8015a6ef37
commit
dcaf7c2c26
1 changed files with 6 additions and 3 deletions
|
|
@ -27,13 +27,16 @@ beforeinstall:
|
|||
|
||||
.for f in fortunes fortunes2 fortunes2-o limerick startrek zippy
|
||||
$f.dat: $f
|
||||
PATH=$$PATH:/usr/games strfile -rs ${.ALLSRC} ${.TARGET}
|
||||
PATH=$$PATH:/usr/games:${.OBJDIR}/../strfile \
|
||||
strfile -rs ${.ALLSRC} ${.TARGET}
|
||||
.endfor
|
||||
|
||||
fortunes-o.dat: fortunes-o
|
||||
PATH=$$PATH:/usr/games strfile -rsx ${.ALLSRC} ${.TARGET}
|
||||
PATH=$$PATH:/usr/games:${.OBJDIR}/../strfile \
|
||||
strfile -rsx ${.ALLSRC} ${.TARGET}
|
||||
|
||||
fortunes-o: fortunes-o.${TYPE}
|
||||
PATH=$$PATH:/usr/games caesar 13 < ${.ALLSRC} > ${.TARGET}
|
||||
PATH=$$PATH:/usr/games:${.OBJDIR}/../../caesar \
|
||||
caesar 13 < ${.ALLSRC} > ${.TARGET}
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue