mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
21 lines
498 B
Perl
21 lines
498 B
Perl
package make_no_swig_makefile ;
|
|
|
|
use Exporter ();
|
|
@ISA = qw(Exporter);
|
|
@EXPORT = qw(make_no_swig_makefile);
|
|
|
|
use strict ;
|
|
|
|
sub make_no_swig_makefile() {
|
|
open MAKEFILE , ">Makefile_swig" or return ;
|
|
print MAKEFILE "# Override TRICK_LIBS variables removing libtrick_pyip.a and remove python libs.\n" ;
|
|
print MAKEFILE "TRICK_LIBS := \${TRICK_LIB_DIR}/libtrick.a\n" ;
|
|
print MAKEFILE "PYTHON_LIB =\n\n" ;
|
|
print MAKEFILE "convert_swig:\n\n" ;
|
|
close MAKEFILE ;
|
|
return ;
|
|
}
|
|
|
|
1;
|
|
|