mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 01:16:28 -04:00
5 lines
119 B
Python
5 lines
119 B
Python
import sys
|
|
from quixote import ptl_compile
|
|
|
|
for srcfile in sys.argv[1:]:
|
|
ptl_compile.compile(srcfile, srcfile + 'c')
|