summaryrefslogtreecommitdiff
path: root/config_flags_pm.com
diff options
context:
space:
mode:
authorHartmut Becker <becker.ismaning@freenet.de>2014-08-18 23:39:44 +0200
committerPaul Smith <psmith@gnu.org>2014-09-07 17:30:37 -0400
commit579ee85941538b69226af55790d1c96811e2cc91 (patch)
tree3737b0050aef3db6e6be94d4ee0785fb658b1f19 /config_flags_pm.com
parent7e51810bb575040295523e373028ed714daade44 (diff)
downloadgunmake-579ee85941538b69226af55790d1c96811e2cc91.tar.gz
* config_flags_pm.com, [RENAMED test_make.com] run_make_tests.com:
Moved into tests directory.
Diffstat (limited to 'config_flags_pm.com')
-rwxr-xr-xconfig_flags_pm.com53
1 files changed, 0 insertions, 53 deletions
diff --git a/config_flags_pm.com b/config_flags_pm.com
deleted file mode 100755
index 75e0da9..0000000
--- a/config_flags_pm.com
+++ /dev/null
@@ -1,53 +0,0 @@
-$!
-$! config_flags_pm.com - Build config-flags.pm on VMS.
-$!
-$! Just good enough to run the self tests for now.
-$!
-$! Copyright (C) 2014 Free Software Foundation, Inc.
-$! This file is part of GNU Make.
-$!
-$! GNU Make is free software; you can redistribute it and/or modify it under
-$! the terms of the GNU General Public License as published by the Free Software
-$! Foundation; either version 3 of the License, or (at your option) any later
-$! version.
-$!
-$! GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
-$! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-$! FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-$! details.
-$!
-$! You should have received a copy of the GNU General Public License along with
-$! this program. If not, see <http://www.gnu.org/licenses/>.
-$!
-$!
-$ open/read cfpm_in [.tests]config-flags.pm.in
-$!
-$ outfile = "sys$disk:[.tests]config-flags.pm"
-$!
-$ cflags = "/include=([],[.glob]"
-$!
-$ create 'outfile'
-$ open/append cfpm 'outfile'
-$!
-$cfpm_read_loop:
-$ read cfpm_in/end=cfpm_read_loop_end line_in
-$ line_in_len = f$length(line_in)
-$ if f$locate("@", line_in) .lt. line_in_len
-$ then
-$ part1 = f$element(0, "@", line_in)
-$ key = f$element(1, "@", line_in)
-$ part2 = f$element(2, "@", line_in)
-$ value = ""
-$ if key .eqs. "CC" then value = "CC"
-$ if key .eqs. "CPP" then value = "CPP"
-$ if key .eqs. "CFLAGS" then value = cflags
-$ if key .eqs. "GUILE_CFLAGS" then value = cflags
-$ write cfpm part1, value, part2
-$ goto cfpm_read_loop
-$ endif
-$ write cfpm line_in
-$ goto cfpm_read_loop
-$cfpm_read_loop_end:
-$ close cfpm_in
-$ close cfpm
-$!