Help for this page

Select Code to Download


  1. or download this
    # configure.ac
    AC_INIT([helloprog],[1.0],[abc@xyz.com])
    ...
    AC_CONFIG_FILES([Makefile])
    AC_CONFIG_FILES([myscript.pl])
    AC_OUTPUT
    
  2. or download this
    # Makefile.am
    bin_SCRIPTS = myscript.pl
    
  3. or download this
    # myscript.pl.in
    # all @MYVAR@ will be substituted by value in configure.ac file
    my $var = "@MYVAR@";
    print "var is : $var\n";