├── .ccls ├── .clangd ├── .dir-locals.el ├── .gitignore ├── AUTHORS ├── Basic.mk.template ├── COPYING ├── ChangeLog.1 ├── ChangeLog.2 ├── ChangeLog.3 ├── Makefile.am ├── NEWS ├── README.DOS ├── README.OS2 ├── README.VMS ├── README.W32 ├── README.customs ├── README.git ├── README.in ├── README.zOS ├── TODO.private ├── autogen.sh ├── autopull.sh ├── bootstrap ├── bootstrap-funclib.sh ├── bootstrap.bat ├── bootstrap.conf ├── configure.ac ├── doc ├── .gitignore ├── Makefile.am ├── make.1 └── make.texi ├── gl ├── .gitignore ├── README ├── lib │ ├── fnmatch.c │ ├── fnmatch.in.h │ ├── glob.c │ └── glob.in.h ├── m4 │ ├── acinclude.m4 │ ├── dospaths.m4 │ └── getloadavg.m4 └── modules │ ├── concat-filename │ ├── findprog-in │ ├── getloadavg │ ├── make-glob │ └── make-macros ├── maintMakefile ├── make-gdb.py ├── makefile.com ├── mk ├── Posix.mk.in ├── VMS.mk ├── Windows32.mk └── msdosdjgpp.mk ├── po ├── .gitignore ├── LINGUAS └── POTFILES.in ├── prepare_vms.com ├── scripts └── copyright-update ├── src ├── ar.c ├── arscan.c ├── commands.c ├── commands.h ├── config.h-vms ├── config.h.W32 ├── configh.dos ├── debug.h ├── default.c ├── dep.h ├── dir.c ├── expand.c ├── file.c ├── filedef.h ├── function.c ├── getopt.c ├── getopt.h ├── getopt1.c ├── gettext.h ├── gmk-default.scm ├── gnumake.h ├── guile.c ├── hash.c ├── hash.h ├── implicit.c ├── job.c ├── job.h ├── load.c ├── loadapi.c ├── main.c ├── makeint.h ├── misc.c ├── mkconfig.h.in ├── mkcustom.h ├── os.h ├── output.c ├── output.h ├── posixos.c ├── read.c ├── remake.c ├── remote-cstms.c ├── remote-stub.c ├── rule.c ├── rule.h ├── shuffle.c ├── shuffle.h ├── signame.c ├── strcache.c ├── variable.c ├── variable.h ├── version.c ├── vms_exit.c ├── vms_export_symbol.c ├── vms_progname.c ├── vmsdir.h ├── vmsfunctions.c ├── vmsify.c ├── vmsjobs.c ├── vpath.c ├── w32 │ ├── compat │ │ ├── dirent.c │ │ └── posixfcn.c │ ├── include │ │ ├── dirent.h │ │ ├── dlfcn.h │ │ ├── pathstuff.h │ │ ├── sub_proc.h │ │ └── w32err.h │ ├── pathstuff.c │ ├── subproc │ │ ├── misc.c │ │ ├── proc.h │ │ ├── sub_proc.c │ │ └── w32err.c │ ├── utf8.manifest │ ├── utf8.rc │ └── w32os.c ├── warning.c └── warning.h ├── tests ├── .gitignore ├── ChangeLog.1 ├── NEWS ├── README ├── config-flags.pm.W32 ├── config-flags.pm.in ├── config_flags_pm.com ├── guile.supp ├── mkshadow ├── run_make_tests ├── run_make_tests.bat ├── run_make_tests.com ├── run_make_tests.pl ├── scripts │ ├── features │ │ ├── archives │ │ ├── comments │ │ ├── conditionals │ │ ├── default_names │ │ ├── dircache │ │ ├── double_colon │ │ ├── echoing │ │ ├── errors │ │ ├── escape │ │ ├── exec │ │ ├── expand │ │ ├── export │ │ ├── grouped_targets │ │ ├── implicit_search │ │ ├── include │ │ ├── jobserver │ │ ├── load │ │ ├── loadapi │ │ ├── mult_rules │ │ ├── mult_targets │ │ ├── order_only │ │ ├── output-sync │ │ ├── override │ │ ├── parallelism │ │ ├── patspecific_vars │ │ ├── patternrules │ │ ├── quoting │ │ ├── recursion │ │ ├── reinvoke │ │ ├── rule_glob │ │ ├── se_explicit │ │ ├── se_implicit │ │ ├── se_statpat │ │ ├── shell_assignment │ │ ├── statipattrules │ │ ├── suffixrules │ │ ├── targetvars │ │ ├── temp_stdin │ │ ├── utf8 │ │ ├── varnesting │ │ ├── vpath │ │ ├── vpathgpath │ │ └── vpathplus │ ├── functions │ │ ├── abspath │ │ ├── addprefix │ │ ├── addsuffix │ │ ├── andor │ │ ├── basename │ │ ├── call │ │ ├── dir │ │ ├── error │ │ ├── eval │ │ ├── file │ │ ├── filter-out │ │ ├── findstring │ │ ├── flavor │ │ ├── foreach │ │ ├── guile │ │ ├── if │ │ ├── intcmp │ │ ├── join │ │ ├── let │ │ ├── notdir │ │ ├── origin │ │ ├── realpath │ │ ├── shell │ │ ├── sort │ │ ├── strip │ │ ├── substitution │ │ ├── suffix │ │ ├── value │ │ ├── warning │ │ ├── wildcard │ │ └── word │ ├── misc │ │ ├── bs-nl │ │ ├── close_stdout │ │ ├── failure │ │ ├── fopen-fail │ │ ├── general1 │ │ ├── general2 │ │ ├── general3 │ │ ├── general4 │ │ └── utf8 │ ├── options │ │ ├── dash-B │ │ ├── dash-C │ │ ├── dash-I │ │ ├── dash-W │ │ ├── dash-d │ │ ├── dash-e │ │ ├── dash-f │ │ ├── dash-k │ │ ├── dash-l │ │ ├── dash-n │ │ ├── dash-q │ │ ├── dash-r │ │ ├── dash-s │ │ ├── dash-t │ │ ├── eval │ │ ├── general │ │ ├── print-directory │ │ ├── print-targets │ │ ├── shuffle │ │ ├── symlinks │ │ └── warn │ ├── targets │ │ ├── DEFAULT │ │ ├── DELETE_ON_ERROR │ │ ├── FORCE │ │ ├── IGNORE │ │ ├── INTERMEDIATE │ │ ├── NOTINTERMEDIATE │ │ ├── ONESHELL │ │ ├── PHONY │ │ ├── POSIX │ │ ├── SECONDARY │ │ ├── SILENT │ │ ├── WAIT │ │ └── clean │ ├── test_template │ ├── variables │ │ ├── CURDIR │ │ ├── DEFAULT_GOAL │ │ ├── EXTRA_PREREQS │ │ ├── GNUMAKEFLAGS │ │ ├── INCLUDE_DIRS │ │ ├── LIBPATTERNS │ │ ├── MAKE │ │ ├── MAKECMDGOALS │ │ ├── MAKEFILES │ │ ├── MAKEFLAGS │ │ ├── MAKELEVEL │ │ ├── MAKE_RESTARTS │ │ ├── MFILE_LIST │ │ ├── SHELL │ │ ├── WARNINGS │ │ ├── append │ │ ├── automatic │ │ ├── conditional │ │ ├── define │ │ ├── flavors │ │ ├── negative │ │ ├── private │ │ ├── special │ │ └── undefine │ └── vms │ │ └── library ├── test_driver.pl └── thelp.pl └── vms_export_symbol_test.com /.ccls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/.ccls -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/.clangd -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/AUTHORS -------------------------------------------------------------------------------- /Basic.mk.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/Basic.mk.template -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/ChangeLog.1 -------------------------------------------------------------------------------- /ChangeLog.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/ChangeLog.2 -------------------------------------------------------------------------------- /ChangeLog.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/ChangeLog.3 -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/NEWS -------------------------------------------------------------------------------- /README.DOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/README.DOS -------------------------------------------------------------------------------- /README.OS2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/README.OS2 -------------------------------------------------------------------------------- /README.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/README.VMS -------------------------------------------------------------------------------- /README.W32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/README.W32 -------------------------------------------------------------------------------- /README.customs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/README.customs -------------------------------------------------------------------------------- /README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/README.git -------------------------------------------------------------------------------- /README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/README.in -------------------------------------------------------------------------------- /README.zOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/README.zOS -------------------------------------------------------------------------------- /TODO.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/TODO.private -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/autogen.sh -------------------------------------------------------------------------------- /autopull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/autopull.sh -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/bootstrap -------------------------------------------------------------------------------- /bootstrap-funclib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/bootstrap-funclib.sh -------------------------------------------------------------------------------- /bootstrap.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/bootstrap.bat -------------------------------------------------------------------------------- /bootstrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/bootstrap.conf -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/make.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/doc/make.1 -------------------------------------------------------------------------------- /doc/make.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/doc/make.texi -------------------------------------------------------------------------------- /gl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/.gitignore -------------------------------------------------------------------------------- /gl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/README -------------------------------------------------------------------------------- /gl/lib/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/lib/fnmatch.c -------------------------------------------------------------------------------- /gl/lib/fnmatch.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/lib/fnmatch.in.h -------------------------------------------------------------------------------- /gl/lib/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/lib/glob.c -------------------------------------------------------------------------------- /gl/lib/glob.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/lib/glob.in.h -------------------------------------------------------------------------------- /gl/m4/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/m4/acinclude.m4 -------------------------------------------------------------------------------- /gl/m4/dospaths.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/m4/dospaths.m4 -------------------------------------------------------------------------------- /gl/m4/getloadavg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/m4/getloadavg.m4 -------------------------------------------------------------------------------- /gl/modules/concat-filename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/modules/concat-filename -------------------------------------------------------------------------------- /gl/modules/findprog-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/modules/findprog-in -------------------------------------------------------------------------------- /gl/modules/getloadavg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/modules/getloadavg -------------------------------------------------------------------------------- /gl/modules/make-glob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/modules/make-glob -------------------------------------------------------------------------------- /gl/modules/make-macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/gl/modules/make-macros -------------------------------------------------------------------------------- /maintMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/maintMakefile -------------------------------------------------------------------------------- /make-gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/make-gdb.py -------------------------------------------------------------------------------- /makefile.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/makefile.com -------------------------------------------------------------------------------- /mk/Posix.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/mk/Posix.mk.in -------------------------------------------------------------------------------- /mk/VMS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/mk/VMS.mk -------------------------------------------------------------------------------- /mk/Windows32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/mk/Windows32.mk -------------------------------------------------------------------------------- /mk/msdosdjgpp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/mk/msdosdjgpp.mk -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !LINGUAS 4 | !POTFILES.in 5 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /prepare_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/prepare_vms.com -------------------------------------------------------------------------------- /scripts/copyright-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/scripts/copyright-update -------------------------------------------------------------------------------- /src/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/ar.c -------------------------------------------------------------------------------- /src/arscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/arscan.c -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/commands.h -------------------------------------------------------------------------------- /src/config.h-vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/config.h-vms -------------------------------------------------------------------------------- /src/config.h.W32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/config.h.W32 -------------------------------------------------------------------------------- /src/configh.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/configh.dos -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/default.c -------------------------------------------------------------------------------- /src/dep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/dep.h -------------------------------------------------------------------------------- /src/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/dir.c -------------------------------------------------------------------------------- /src/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/expand.c -------------------------------------------------------------------------------- /src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/file.c -------------------------------------------------------------------------------- /src/filedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/filedef.h -------------------------------------------------------------------------------- /src/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/function.c -------------------------------------------------------------------------------- /src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/getopt.c -------------------------------------------------------------------------------- /src/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/getopt.h -------------------------------------------------------------------------------- /src/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/getopt1.c -------------------------------------------------------------------------------- /src/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/gettext.h -------------------------------------------------------------------------------- /src/gmk-default.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/gmk-default.scm -------------------------------------------------------------------------------- /src/gnumake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/gnumake.h -------------------------------------------------------------------------------- /src/guile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/guile.c -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/implicit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/implicit.c -------------------------------------------------------------------------------- /src/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/job.c -------------------------------------------------------------------------------- /src/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/job.h -------------------------------------------------------------------------------- /src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/load.c -------------------------------------------------------------------------------- /src/loadapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/loadapi.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/main.c -------------------------------------------------------------------------------- /src/makeint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/makeint.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/mkconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/mkconfig.h.in -------------------------------------------------------------------------------- /src/mkcustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/mkcustom.h -------------------------------------------------------------------------------- /src/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/os.h -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/output.c -------------------------------------------------------------------------------- /src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/output.h -------------------------------------------------------------------------------- /src/posixos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/posixos.c -------------------------------------------------------------------------------- /src/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/read.c -------------------------------------------------------------------------------- /src/remake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/remake.c -------------------------------------------------------------------------------- /src/remote-cstms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/remote-cstms.c -------------------------------------------------------------------------------- /src/remote-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/remote-stub.c -------------------------------------------------------------------------------- /src/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/rule.c -------------------------------------------------------------------------------- /src/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/rule.h -------------------------------------------------------------------------------- /src/shuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/shuffle.c -------------------------------------------------------------------------------- /src/shuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/shuffle.h -------------------------------------------------------------------------------- /src/signame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/signame.c -------------------------------------------------------------------------------- /src/strcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/strcache.c -------------------------------------------------------------------------------- /src/variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/variable.c -------------------------------------------------------------------------------- /src/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/variable.h -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/version.c -------------------------------------------------------------------------------- /src/vms_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/vms_exit.c -------------------------------------------------------------------------------- /src/vms_export_symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/vms_export_symbol.c -------------------------------------------------------------------------------- /src/vms_progname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/vms_progname.c -------------------------------------------------------------------------------- /src/vmsdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/vmsdir.h -------------------------------------------------------------------------------- /src/vmsfunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/vmsfunctions.c -------------------------------------------------------------------------------- /src/vmsify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/vmsify.c -------------------------------------------------------------------------------- /src/vmsjobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/vmsjobs.c -------------------------------------------------------------------------------- /src/vpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/vpath.c -------------------------------------------------------------------------------- /src/w32/compat/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/compat/dirent.c -------------------------------------------------------------------------------- /src/w32/compat/posixfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/compat/posixfcn.c -------------------------------------------------------------------------------- /src/w32/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/include/dirent.h -------------------------------------------------------------------------------- /src/w32/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/include/dlfcn.h -------------------------------------------------------------------------------- /src/w32/include/pathstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/include/pathstuff.h -------------------------------------------------------------------------------- /src/w32/include/sub_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/include/sub_proc.h -------------------------------------------------------------------------------- /src/w32/include/w32err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/include/w32err.h -------------------------------------------------------------------------------- /src/w32/pathstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/pathstuff.c -------------------------------------------------------------------------------- /src/w32/subproc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/subproc/misc.c -------------------------------------------------------------------------------- /src/w32/subproc/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/subproc/proc.h -------------------------------------------------------------------------------- /src/w32/subproc/sub_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/subproc/sub_proc.c -------------------------------------------------------------------------------- /src/w32/subproc/w32err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/subproc/w32err.c -------------------------------------------------------------------------------- /src/w32/utf8.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/utf8.manifest -------------------------------------------------------------------------------- /src/w32/utf8.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/utf8.rc -------------------------------------------------------------------------------- /src/w32/w32os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/w32/w32os.c -------------------------------------------------------------------------------- /src/warning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/warning.c -------------------------------------------------------------------------------- /src/warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/src/warning.h -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | .test-result 2 | config-flags.pm 3 | work 4 | -------------------------------------------------------------------------------- /tests/ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/ChangeLog.1 -------------------------------------------------------------------------------- /tests/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/NEWS -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/README -------------------------------------------------------------------------------- /tests/config-flags.pm.W32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/config-flags.pm.W32 -------------------------------------------------------------------------------- /tests/config-flags.pm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/config-flags.pm.in -------------------------------------------------------------------------------- /tests/config_flags_pm.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/config_flags_pm.com -------------------------------------------------------------------------------- /tests/guile.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/guile.supp -------------------------------------------------------------------------------- /tests/mkshadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/mkshadow -------------------------------------------------------------------------------- /tests/run_make_tests: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec perl $0.pl ${1+"$@"} 3 | -------------------------------------------------------------------------------- /tests/run_make_tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/run_make_tests.bat -------------------------------------------------------------------------------- /tests/run_make_tests.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/run_make_tests.com -------------------------------------------------------------------------------- /tests/run_make_tests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/run_make_tests.pl -------------------------------------------------------------------------------- /tests/scripts/features/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/archives -------------------------------------------------------------------------------- /tests/scripts/features/comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/comments -------------------------------------------------------------------------------- /tests/scripts/features/conditionals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/conditionals -------------------------------------------------------------------------------- /tests/scripts/features/default_names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/default_names -------------------------------------------------------------------------------- /tests/scripts/features/dircache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/dircache -------------------------------------------------------------------------------- /tests/scripts/features/double_colon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/double_colon -------------------------------------------------------------------------------- /tests/scripts/features/echoing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/echoing -------------------------------------------------------------------------------- /tests/scripts/features/errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/errors -------------------------------------------------------------------------------- /tests/scripts/features/escape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/escape -------------------------------------------------------------------------------- /tests/scripts/features/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/exec -------------------------------------------------------------------------------- /tests/scripts/features/expand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/expand -------------------------------------------------------------------------------- /tests/scripts/features/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/export -------------------------------------------------------------------------------- /tests/scripts/features/grouped_targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/grouped_targets -------------------------------------------------------------------------------- /tests/scripts/features/implicit_search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/implicit_search -------------------------------------------------------------------------------- /tests/scripts/features/include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/include -------------------------------------------------------------------------------- /tests/scripts/features/jobserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/jobserver -------------------------------------------------------------------------------- /tests/scripts/features/load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/load -------------------------------------------------------------------------------- /tests/scripts/features/loadapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/loadapi -------------------------------------------------------------------------------- /tests/scripts/features/mult_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/mult_rules -------------------------------------------------------------------------------- /tests/scripts/features/mult_targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/mult_targets -------------------------------------------------------------------------------- /tests/scripts/features/order_only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/order_only -------------------------------------------------------------------------------- /tests/scripts/features/output-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/output-sync -------------------------------------------------------------------------------- /tests/scripts/features/override: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/override -------------------------------------------------------------------------------- /tests/scripts/features/parallelism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/parallelism -------------------------------------------------------------------------------- /tests/scripts/features/patspecific_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/patspecific_vars -------------------------------------------------------------------------------- /tests/scripts/features/patternrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/patternrules -------------------------------------------------------------------------------- /tests/scripts/features/quoting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/quoting -------------------------------------------------------------------------------- /tests/scripts/features/recursion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/recursion -------------------------------------------------------------------------------- /tests/scripts/features/reinvoke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/reinvoke -------------------------------------------------------------------------------- /tests/scripts/features/rule_glob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/rule_glob -------------------------------------------------------------------------------- /tests/scripts/features/se_explicit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/se_explicit -------------------------------------------------------------------------------- /tests/scripts/features/se_implicit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/se_implicit -------------------------------------------------------------------------------- /tests/scripts/features/se_statpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/se_statpat -------------------------------------------------------------------------------- /tests/scripts/features/shell_assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/shell_assignment -------------------------------------------------------------------------------- /tests/scripts/features/statipattrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/statipattrules -------------------------------------------------------------------------------- /tests/scripts/features/suffixrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/suffixrules -------------------------------------------------------------------------------- /tests/scripts/features/targetvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/targetvars -------------------------------------------------------------------------------- /tests/scripts/features/temp_stdin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/temp_stdin -------------------------------------------------------------------------------- /tests/scripts/features/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/utf8 -------------------------------------------------------------------------------- /tests/scripts/features/varnesting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/varnesting -------------------------------------------------------------------------------- /tests/scripts/features/vpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/vpath -------------------------------------------------------------------------------- /tests/scripts/features/vpathgpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/vpathgpath -------------------------------------------------------------------------------- /tests/scripts/features/vpathplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/features/vpathplus -------------------------------------------------------------------------------- /tests/scripts/functions/abspath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/abspath -------------------------------------------------------------------------------- /tests/scripts/functions/addprefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/addprefix -------------------------------------------------------------------------------- /tests/scripts/functions/addsuffix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/addsuffix -------------------------------------------------------------------------------- /tests/scripts/functions/andor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/andor -------------------------------------------------------------------------------- /tests/scripts/functions/basename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/basename -------------------------------------------------------------------------------- /tests/scripts/functions/call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/call -------------------------------------------------------------------------------- /tests/scripts/functions/dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/dir -------------------------------------------------------------------------------- /tests/scripts/functions/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/error -------------------------------------------------------------------------------- /tests/scripts/functions/eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/eval -------------------------------------------------------------------------------- /tests/scripts/functions/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/file -------------------------------------------------------------------------------- /tests/scripts/functions/filter-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/filter-out -------------------------------------------------------------------------------- /tests/scripts/functions/findstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/findstring -------------------------------------------------------------------------------- /tests/scripts/functions/flavor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/flavor -------------------------------------------------------------------------------- /tests/scripts/functions/foreach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/foreach -------------------------------------------------------------------------------- /tests/scripts/functions/guile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/guile -------------------------------------------------------------------------------- /tests/scripts/functions/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/if -------------------------------------------------------------------------------- /tests/scripts/functions/intcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/intcmp -------------------------------------------------------------------------------- /tests/scripts/functions/join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/join -------------------------------------------------------------------------------- /tests/scripts/functions/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/let -------------------------------------------------------------------------------- /tests/scripts/functions/notdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/notdir -------------------------------------------------------------------------------- /tests/scripts/functions/origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/origin -------------------------------------------------------------------------------- /tests/scripts/functions/realpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/realpath -------------------------------------------------------------------------------- /tests/scripts/functions/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/shell -------------------------------------------------------------------------------- /tests/scripts/functions/sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/sort -------------------------------------------------------------------------------- /tests/scripts/functions/strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/strip -------------------------------------------------------------------------------- /tests/scripts/functions/substitution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/substitution -------------------------------------------------------------------------------- /tests/scripts/functions/suffix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/suffix -------------------------------------------------------------------------------- /tests/scripts/functions/value: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/value -------------------------------------------------------------------------------- /tests/scripts/functions/warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/warning -------------------------------------------------------------------------------- /tests/scripts/functions/wildcard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/wildcard -------------------------------------------------------------------------------- /tests/scripts/functions/word: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/functions/word -------------------------------------------------------------------------------- /tests/scripts/misc/bs-nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/bs-nl -------------------------------------------------------------------------------- /tests/scripts/misc/close_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/close_stdout -------------------------------------------------------------------------------- /tests/scripts/misc/failure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/failure -------------------------------------------------------------------------------- /tests/scripts/misc/fopen-fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/fopen-fail -------------------------------------------------------------------------------- /tests/scripts/misc/general1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/general1 -------------------------------------------------------------------------------- /tests/scripts/misc/general2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/general2 -------------------------------------------------------------------------------- /tests/scripts/misc/general3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/general3 -------------------------------------------------------------------------------- /tests/scripts/misc/general4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/general4 -------------------------------------------------------------------------------- /tests/scripts/misc/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/misc/utf8 -------------------------------------------------------------------------------- /tests/scripts/options/dash-B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-B -------------------------------------------------------------------------------- /tests/scripts/options/dash-C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-C -------------------------------------------------------------------------------- /tests/scripts/options/dash-I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-I -------------------------------------------------------------------------------- /tests/scripts/options/dash-W: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-W -------------------------------------------------------------------------------- /tests/scripts/options/dash-d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-d -------------------------------------------------------------------------------- /tests/scripts/options/dash-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-e -------------------------------------------------------------------------------- /tests/scripts/options/dash-f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-f -------------------------------------------------------------------------------- /tests/scripts/options/dash-k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-k -------------------------------------------------------------------------------- /tests/scripts/options/dash-l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-l -------------------------------------------------------------------------------- /tests/scripts/options/dash-n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-n -------------------------------------------------------------------------------- /tests/scripts/options/dash-q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-q -------------------------------------------------------------------------------- /tests/scripts/options/dash-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-r -------------------------------------------------------------------------------- /tests/scripts/options/dash-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-s -------------------------------------------------------------------------------- /tests/scripts/options/dash-t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/dash-t -------------------------------------------------------------------------------- /tests/scripts/options/eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/eval -------------------------------------------------------------------------------- /tests/scripts/options/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/general -------------------------------------------------------------------------------- /tests/scripts/options/print-directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/print-directory -------------------------------------------------------------------------------- /tests/scripts/options/print-targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/print-targets -------------------------------------------------------------------------------- /tests/scripts/options/shuffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/shuffle -------------------------------------------------------------------------------- /tests/scripts/options/symlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/symlinks -------------------------------------------------------------------------------- /tests/scripts/options/warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/options/warn -------------------------------------------------------------------------------- /tests/scripts/targets/DEFAULT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/DEFAULT -------------------------------------------------------------------------------- /tests/scripts/targets/DELETE_ON_ERROR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/DELETE_ON_ERROR -------------------------------------------------------------------------------- /tests/scripts/targets/FORCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/FORCE -------------------------------------------------------------------------------- /tests/scripts/targets/IGNORE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/IGNORE -------------------------------------------------------------------------------- /tests/scripts/targets/INTERMEDIATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/INTERMEDIATE -------------------------------------------------------------------------------- /tests/scripts/targets/NOTINTERMEDIATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/NOTINTERMEDIATE -------------------------------------------------------------------------------- /tests/scripts/targets/ONESHELL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/ONESHELL -------------------------------------------------------------------------------- /tests/scripts/targets/PHONY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/PHONY -------------------------------------------------------------------------------- /tests/scripts/targets/POSIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/POSIX -------------------------------------------------------------------------------- /tests/scripts/targets/SECONDARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/SECONDARY -------------------------------------------------------------------------------- /tests/scripts/targets/SILENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/SILENT -------------------------------------------------------------------------------- /tests/scripts/targets/WAIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/WAIT -------------------------------------------------------------------------------- /tests/scripts/targets/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/targets/clean -------------------------------------------------------------------------------- /tests/scripts/test_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/test_template -------------------------------------------------------------------------------- /tests/scripts/variables/CURDIR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/CURDIR -------------------------------------------------------------------------------- /tests/scripts/variables/DEFAULT_GOAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/DEFAULT_GOAL -------------------------------------------------------------------------------- /tests/scripts/variables/EXTRA_PREREQS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/EXTRA_PREREQS -------------------------------------------------------------------------------- /tests/scripts/variables/GNUMAKEFLAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/GNUMAKEFLAGS -------------------------------------------------------------------------------- /tests/scripts/variables/INCLUDE_DIRS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/INCLUDE_DIRS -------------------------------------------------------------------------------- /tests/scripts/variables/LIBPATTERNS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/LIBPATTERNS -------------------------------------------------------------------------------- /tests/scripts/variables/MAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/MAKE -------------------------------------------------------------------------------- /tests/scripts/variables/MAKECMDGOALS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/MAKECMDGOALS -------------------------------------------------------------------------------- /tests/scripts/variables/MAKEFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/MAKEFILES -------------------------------------------------------------------------------- /tests/scripts/variables/MAKEFLAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/MAKEFLAGS -------------------------------------------------------------------------------- /tests/scripts/variables/MAKELEVEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/MAKELEVEL -------------------------------------------------------------------------------- /tests/scripts/variables/MAKE_RESTARTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/MAKE_RESTARTS -------------------------------------------------------------------------------- /tests/scripts/variables/MFILE_LIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/MFILE_LIST -------------------------------------------------------------------------------- /tests/scripts/variables/SHELL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/SHELL -------------------------------------------------------------------------------- /tests/scripts/variables/WARNINGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/WARNINGS -------------------------------------------------------------------------------- /tests/scripts/variables/append: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/append -------------------------------------------------------------------------------- /tests/scripts/variables/automatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/automatic -------------------------------------------------------------------------------- /tests/scripts/variables/conditional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/conditional -------------------------------------------------------------------------------- /tests/scripts/variables/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/define -------------------------------------------------------------------------------- /tests/scripts/variables/flavors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/flavors -------------------------------------------------------------------------------- /tests/scripts/variables/negative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/negative -------------------------------------------------------------------------------- /tests/scripts/variables/private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/private -------------------------------------------------------------------------------- /tests/scripts/variables/special: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/special -------------------------------------------------------------------------------- /tests/scripts/variables/undefine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/variables/undefine -------------------------------------------------------------------------------- /tests/scripts/vms/library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/scripts/vms/library -------------------------------------------------------------------------------- /tests/test_driver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/test_driver.pl -------------------------------------------------------------------------------- /tests/thelp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/tests/thelp.pl -------------------------------------------------------------------------------- /vms_export_symbol_test.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/make/HEAD/vms_export_symbol_test.com --------------------------------------------------------------------------------