blob: 8976faa2f49205a821bc2a19af1e968cdf3a6dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
################################################################################
#
# apicheck_c.PL -- generate apicheck.c
#
################################################################################
#
# $Revision: 5 $
# $Author: mhx $
# $Date: 2005/01/31 08:10:48 +0100 $
#
################################################################################
#
# Version 3.x, Copyright (C) 2004-2005, Marcus Holland-Moritz.
# Version 2.x, Copyright (C) 2001, Paul Marquess.
# Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
#
################################################################################
$out = 'apicheck.c';
print "creating $out\n";
system $^X, 'parts/apicheck.pl', $out
and die "couldn't create $out\n";
|