1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 00:32:23 +01:00
Files
archived-php-src/build/print_include.awk
Sascha Schumann 060e647e5e Speed up the genif.sh script a little bit. Whereas it took three seconds
previously, it takes now about 100ms on a P233.
2000-12-20 16:29:07 +00:00

7 lines
118 B
Awk

/phpext_/ {
if (old_filename != FILENAME) {
printf "#include \"" FILENAME "\"\\\\n"
old_filename = FILENAME
}
}