mirror of
https://github.com/pennmush/pennmush
synced 2026-08-12 22:23:05 -04:00
git-svn-id: https://pennmush.googlecode.com/svn/trunk@1561 ba372814-4f39-11de-9ad6-1127a62b9fcd
13 lines
234 B
Perl
Executable file
13 lines
234 B
Perl
Executable file
#!/usr/bin/env perl -i~
|
|
# Get rid of all global headers. We only really care about the ones
|
|
# in hdrs/
|
|
|
|
my $in_deps = 0;
|
|
|
|
while (<>) {
|
|
$in_deps = 1 if /make depend depends on it/;
|
|
next if $in_deps and m!:\s+/!;
|
|
print;
|
|
}
|
|
|
|
|