├── .github ├── FUNDING.yml └── workflows │ └── ubuntu.yml ├── .gitignore ├── .python-version ├── .readthedocs.yml ├── .travis.yml ├── AUTHORS ├── COPYING ├── INSTALL-from-source.md ├── Makefile.am ├── NEWS ├── NEWS-remake.md ├── README.customs ├── README.git ├── README.md ├── README.remake ├── README.template ├── REMAKE.todo ├── Rakefile ├── TODO.private ├── acinclude.m4 ├── autogen.sh ├── config.h.in ├── config └── .gitignore ├── configure.ac ├── doc ├── .gitignore ├── Makefile.am ├── doxygen │ ├── .gitignore │ ├── Doxyfile.in │ └── run_doxygen ├── fdl.texi ├── make-stds.texi ├── make.1 ├── make.texi ├── readthedocs │ ├── .gitignore │ ├── Makefile │ ├── conf.py │ ├── debugger.rst │ ├── debugger │ │ ├── commands.rst │ │ ├── commands │ │ │ ├── breakpoints.rst │ │ │ ├── breakpoints │ │ │ │ ├── break.rst │ │ │ │ └── delete.rst │ │ │ ├── data.rst │ │ │ ├── data │ │ │ │ ├── expand.rst │ │ │ │ ├── print.rst │ │ │ │ ├── target.rst │ │ │ │ └── write.rst │ │ │ ├── files.rst │ │ │ ├── files │ │ │ │ ├── edit.rst │ │ │ │ ├── list.rst │ │ │ │ └── load.rst │ │ │ ├── info.rst │ │ │ ├── info │ │ │ │ ├── break.rst │ │ │ │ ├── files.rst │ │ │ │ ├── frame.rst │ │ │ │ ├── line.rst │ │ │ │ ├── program.rst │ │ │ │ ├── rules.rst │ │ │ │ ├── target.rst │ │ │ │ ├── targets.rst │ │ │ │ ├── tasks.rst │ │ │ │ └── variables.rst │ │ │ ├── os.rst │ │ │ ├── os │ │ │ │ ├── cd.rst │ │ │ │ ├── pwd.rst │ │ │ │ └── shell.rst │ │ │ ├── running.rst │ │ │ ├── running │ │ │ │ ├── continue.rst │ │ │ │ ├── finish.rst │ │ │ │ ├── next.rst │ │ │ │ ├── quit.rst │ │ │ │ ├── run.rst │ │ │ │ ├── skip.rst │ │ │ │ └── step.rst │ │ │ ├── set.rst │ │ │ ├── set │ │ │ │ ├── basename.rst │ │ │ │ ├── debug.rst │ │ │ │ ├── ignore-errors.rst │ │ │ │ ├── keep-going.rst │ │ │ │ ├── setq.rst │ │ │ │ ├── setqx.rst │ │ │ │ └── silent.rst │ │ │ ├── show.rst │ │ │ ├── show │ │ │ │ ├── args.rst │ │ │ │ ├── basename.rst │ │ │ │ ├── commands.rst │ │ │ │ ├── debug.rst │ │ │ │ ├── ignore-errors.rst │ │ │ │ ├── keep-going.rst │ │ │ │ ├── silent.rst │ │ │ │ └── version.rst │ │ │ ├── stack.rst │ │ │ ├── stack │ │ │ │ ├── backtrace.rst │ │ │ │ ├── down.rst │ │ │ │ ├── frame.rst │ │ │ │ └── up.rst │ │ │ ├── support.rst │ │ │ └── support │ │ │ │ ├── help.rst │ │ │ │ └── source.rst │ │ ├── entry.rst │ │ ├── sessions.rst │ │ └── syntax.rst │ ├── features.rst │ ├── index.rst │ ├── install.rst │ ├── make.bat │ └── manpage.rst ├── remake.texi └── sourceforge │ ├── index.html │ ├── remake-profiled2.png │ ├── remake-search-parent.gif │ ├── remake-session0.gif │ └── remake-trace.gif ├── git2cl ├── glob ├── .gitignore ├── COPYING.LIB ├── ChangeLog ├── Makefile.am ├── fnmatch.c ├── fnmatch.h ├── glob.c └── glob.h ├── gmk-default.scm ├── lib ├── .gitignore ├── Makefile.am ├── _Noreturn.h ├── access.c ├── alloca.c ├── alloca.in.h ├── arg-nonnull.h ├── basename-lgpl.c ├── c++defs.h ├── close.c ├── concat-filename.c ├── concat-filename.h ├── dirname-lgpl.c ├── dirname.h ├── dosname.h ├── dup2.c ├── errno.in.h ├── error.c ├── error.h ├── exitfail.c ├── exitfail.h ├── fcntl.c ├── fcntl.in.h ├── fd-hook.c ├── fd-hook.h ├── filename.h ├── findprog-in.c ├── findprog.h ├── fnmatch.c ├── fnmatch.in.h ├── getdtablesize.c ├── getloadavg.c ├── getprogname.c ├── getprogname.h ├── gettext.h ├── glob.c ├── glob.in.h ├── intprops.h ├── limits.in.h ├── malloc.c ├── msvc-inval.c ├── msvc-inval.h ├── msvc-nothrow.c ├── msvc-nothrow.h ├── stdbool.in.h ├── stddef.in.h ├── stdint.in.h ├── stdio.in.h ├── stdlib.in.h ├── stpcpy.c ├── strerror-override.c ├── strerror-override.h ├── strerror.c ├── string.in.h ├── stripslash.c ├── sys_types.in.h ├── unistd.c ├── unistd.in.h ├── verify.h ├── warn-on-use.h ├── xalloc-die.c ├── xalloc-oversized.h ├── xalloc.h ├── xconcat-filename.c └── xmalloc.c ├── libdebugger ├── .gitignore ├── Makefile.am ├── break.c ├── break.h ├── cmd.c ├── cmd.h ├── cmd_initialize.h ├── command │ ├── .gitignore │ ├── break.c │ ├── chdir.c │ ├── comment.c │ ├── continue.c │ ├── delete.c │ ├── down.c │ ├── edit.c │ ├── expand.c │ ├── finish.c │ ├── frame.c │ ├── help.c │ ├── help │ │ ├── break.h │ │ ├── chdir.h │ │ ├── comment.h │ │ ├── continue.h │ │ ├── delete.h │ │ ├── down.h │ │ ├── edit.h │ │ ├── expand.h │ │ ├── finish.h │ │ ├── frame.h │ │ ├── help.h │ │ ├── info.h │ │ ├── list.h │ │ ├── load.h │ │ ├── next.h │ │ ├── print.h │ │ ├── pwd.h │ │ ├── quit.h │ │ ├── run.h │ │ ├── set.h │ │ ├── setq.h │ │ ├── setqx.h │ │ ├── shell.h │ │ ├── show.h │ │ ├── skip.h │ │ ├── source.h │ │ ├── step.h │ │ ├── target.h │ │ ├── up.h │ │ ├── where.h │ │ └── write.h │ ├── info.c │ ├── list.c │ ├── load.c │ ├── next.c │ ├── print.c │ ├── pwd.c │ ├── quit.c │ ├── run.c │ ├── set.c │ ├── setq.c │ ├── setqx.c │ ├── shell.c │ ├── show.c │ ├── skip.c │ ├── source.c │ ├── step.c │ ├── target.c │ ├── up.c │ ├── where.c │ └── write.c ├── commands.h ├── debugger.h ├── file2line.c ├── file2line.h ├── fns.c ├── fns.h ├── info.h ├── msg.c ├── msg.h ├── stack.c ├── stack.h └── subcmd.h ├── m4 ├── .gitignore ├── 00gnulib.m4 ├── absolute-header.m4 ├── access.m4 ├── acinclude.m4 ├── alloca.m4 ├── asm-underscore.m4 ├── ax_check_compile_flag.m4 ├── close.m4 ├── dirname.m4 ├── dospaths.m4 ├── double-slash-root.m4 ├── dup2.m4 ├── eaccess.m4 ├── errno_h.m4 ├── error.m4 ├── extensions.m4 ├── fcntl-o.m4 ├── fcntl.m4 ├── fcntl_h.m4 ├── findprog-in.m4 ├── getdtablesize.m4 ├── getloadavg.m4 ├── getprogname.m4 ├── gettext.m4 ├── gnulib-cache.m4 ├── gnulib-common.m4 ├── gnulib-comp.m4 ├── host-cpu-c-abi.m4 ├── iconv.m4 ├── include_next.m4 ├── intlmacosx.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 ├── limits-h.m4 ├── longlong.m4 ├── malloc.m4 ├── msvc-inval.m4 ├── msvc-nothrow.m4 ├── multiarch.m4 ├── nls.m4 ├── off_t.m4 ├── po.m4 ├── progtest.m4 ├── ssize_t.m4 ├── stdbool.m4 ├── stddef_h.m4 ├── stdint.m4 ├── stdio_h.m4 ├── stdlib_h.m4 ├── stpcpy.m4 ├── strerror.m4 ├── string_h.m4 ├── sys_socket_h.m4 ├── sys_types_h.m4 ├── unistd_h.m4 ├── warn-on-use.m4 ├── wchar_t.m4 ├── wint_t.m4 └── xalloc.m4 ├── maintMakefile ├── po ├── .gitignore ├── LINGUAS ├── Makefile.in.in.patch ├── Makevars └── POTFILES.in ├── profile ├── README.md └── call2png.sh ├── rpm ├── README.md ├── remake-centos6.spec └── remake-centos7.spec ├── screenshots ├── README.md ├── remake-profiled2.png ├── remake-search-parent.cast ├── remake-search-parent.gif ├── remake-session3.cast ├── remake-tasks.cast ├── remake-tasks.gif ├── remake-trace.cast └── remake-trace.gif ├── src ├── .gitignore ├── alloc.c ├── ar.c ├── arscan.c ├── buildargv.c ├── buildargv.h ├── callgrind_format.c ├── callgrind_format.h ├── commands.c ├── commands.h ├── debug.c ├── debug.h ├── debugger │ └── .gitignore ├── default.c ├── dep.h ├── dir.c ├── expand.c ├── expand.h ├── file.c ├── file.h ├── file_basic.c ├── file_basic.h ├── filedef.h ├── function.c ├── function.h ├── getopt.c ├── getopt.h ├── getopt1.c ├── gettext.h ├── git2cl ├── globals.c ├── globals.h ├── gmk-default.h ├── gmk-default.scm ├── gnuremake.h ├── guile.c ├── hash.c ├── hash.h ├── implicit.c ├── implicit.h ├── job.c ├── job.h ├── json_format.c ├── json_format.h ├── load.c ├── loadapi.c ├── main.c ├── main.h ├── make.h ├── makeint.h ├── misc.c ├── mock.c ├── mock.h ├── os.h ├── output.c ├── output.h ├── posixos.c ├── print.c ├── print.h ├── profile.c ├── profile.h ├── read.c ├── read.h ├── remake.c ├── remote-cstms.c ├── remote-stub.c ├── rule.c ├── rule.h ├── signame.c ├── strcache.c ├── trace.c ├── trace.h ├── types.h ├── variable.c ├── variable.h ├── version.c ├── vpath.c ├── vpath.h └── w32 │ ├── README.md │ └── w32os.c ├── tests ├── .gitignore ├── README ├── config-flags.pm.in ├── guile.supp ├── mkshadow ├── run_make_tests ├── run_make_tests.pl ├── scripts │ ├── features │ │ ├── archives │ │ ├── comments │ │ ├── conditionals │ │ ├── default_names │ │ ├── double_colon │ │ ├── echoing │ │ ├── errors │ │ ├── escape │ │ ├── exec │ │ ├── export │ │ ├── grouped_targets │ │ ├── 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 │ │ ├── utf8 │ │ ├── varnesting │ │ ├── vpath │ │ ├── vpath2 │ │ ├── vpath3 │ │ ├── vpathgpath │ │ └── vpathplus │ ├── functions │ │ ├── abspath │ │ ├── addprefix │ │ ├── addsuffix │ │ ├── andor │ │ ├── basename │ │ ├── call │ │ ├── dir │ │ ├── error │ │ ├── eval │ │ ├── file │ │ ├── filter-out │ │ ├── findstring │ │ ├── flavor │ │ ├── foreach │ │ ├── guile │ │ ├── if │ │ ├── join │ │ ├── notdir │ │ ├── origin │ │ ├── realpath │ │ ├── shell │ │ ├── sort │ │ ├── strip │ │ ├── substitution │ │ ├── suffix │ │ ├── value │ │ ├── warning │ │ ├── wildcard │ │ └── word │ ├── misc │ │ ├── bs-nl │ │ ├── close_stdout │ │ ├── fopen-fail │ │ ├── general1 │ │ ├── general2 │ │ ├── general3 │ │ ├── general4 │ │ └── utf8 │ ├── options │ │ ├── dash-B │ │ ├── dash-C │ │ ├── dash-I │ │ ├── dash-W │ │ ├── dash-e │ │ ├── dash-f │ │ ├── dash-k │ │ ├── dash-l │ │ ├── dash-lowercase-c │ │ ├── dash-n │ │ ├── dash-q │ │ ├── dash-s │ │ ├── dash-t │ │ ├── eval │ │ ├── general │ │ ├── print-directory │ │ ├── symlinks │ │ └── warn-undefined-variables │ ├── remake │ │ └── tasks │ ├── targets │ │ ├── DEFAULT │ │ ├── DELETE_ON_ERROR │ │ ├── FORCE │ │ ├── INTERMEDIATE │ │ ├── ONESHELL │ │ ├── PHONY │ │ ├── POSIX │ │ ├── SECONDARY │ │ ├── SILENT │ │ └── clean │ ├── test_template │ └── variables │ │ ├── CURDIR │ │ ├── DEFAULT_GOAL │ │ ├── EXTRA_PREREQS │ │ ├── GNUMAKEFLAGS │ │ ├── INCLUDE_DIRS │ │ ├── LIBPATTERNS │ │ ├── MAKE │ │ ├── MAKECMDGOALS │ │ ├── MAKEFILES │ │ ├── MAKEFLAGS │ │ ├── MAKELEVEL │ │ ├── MAKE_RESTARTS │ │ ├── MFILE_LIST │ │ ├── SHELL │ │ ├── automatic │ │ ├── define │ │ ├── flavors │ │ ├── negative │ │ ├── private │ │ ├── special │ │ └── undefine ├── spec │ ├── .gitignore │ ├── data │ │ ├── .gitignore │ │ ├── break-all.right │ │ ├── break-end.right │ │ ├── break-expand.right │ │ ├── break-prereq.right │ │ ├── break-run.right │ │ ├── break.right │ │ ├── commented.right │ │ ├── continue.right │ │ ├── description-trace.right │ │ ├── info-rule.right │ │ ├── info-target.right │ │ ├── info-targets.right │ │ ├── list.right │ │ ├── norl.right │ │ ├── opt-x-trace.right │ │ ├── opt-y-trace.right │ │ ├── remakerc │ │ ├── set.right │ │ ├── source.right │ │ └── step3.right │ ├── example │ │ ├── .gitignore │ │ ├── commented.Makefile │ │ ├── debug-call.Makefile │ │ ├── debugger.Makefile │ │ ├── implicit.Makefile │ │ ├── order-only.Makefile │ │ ├── simple.Makefile │ │ ├── test2.Makefile │ │ └── triple.Makefile │ ├── helper.rb │ ├── run-tests.rb │ ├── test-break.rb │ ├── test-commented.rb │ ├── test-continue.rb │ ├── test-info-rule.rb │ ├── test-info-target.rb │ ├── test-info-targets.rb │ ├── test-list.rb │ ├── test-norl.rb │ ├── test-set.rb │ ├── test-source.rb │ ├── test-step3.rb │ ├── test-tasks.rb │ └── test-trace.rb ├── test_driver.pl └── thelp.pl └── unittest ├── .gitignore ├── Makefile.am └── test_profile.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8.2 2 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL-from-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/INSTALL-from-source.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS-remake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/NEWS-remake.md -------------------------------------------------------------------------------- /README.customs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/README.customs -------------------------------------------------------------------------------- /README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/README.git -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/README.md -------------------------------------------------------------------------------- /README.remake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/README.remake -------------------------------------------------------------------------------- /README.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/README.template -------------------------------------------------------------------------------- /REMAKE.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/REMAKE.todo -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/TODO.private -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/config.h.in -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/config/.gitignore -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/doxygen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/doxygen/.gitignore -------------------------------------------------------------------------------- /doc/doxygen/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/doxygen/Doxyfile.in -------------------------------------------------------------------------------- /doc/doxygen/run_doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/doxygen/run_doxygen -------------------------------------------------------------------------------- /doc/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/fdl.texi -------------------------------------------------------------------------------- /doc/make-stds.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/make-stds.texi -------------------------------------------------------------------------------- /doc/make.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/make.1 -------------------------------------------------------------------------------- /doc/make.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/make.texi -------------------------------------------------------------------------------- /doc/readthedocs/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /.python-version 3 | /_build 4 | -------------------------------------------------------------------------------- /doc/readthedocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/Makefile -------------------------------------------------------------------------------- /doc/readthedocs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/conf.py -------------------------------------------------------------------------------- /doc/readthedocs/debugger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/breakpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/breakpoints.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/breakpoints/break.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/breakpoints/break.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/breakpoints/delete.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/breakpoints/delete.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/data.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/data/expand.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/data/expand.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/data/print.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/data/print.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/data/target.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/data/target.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/data/write.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/data/write.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/files.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/files/edit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/files/edit.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/files/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/files/list.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/files/load.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/files/load.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/break.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/break.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/files.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/frame.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/line.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/program.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/program.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/rules.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/target.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/target.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/targets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/targets.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/tasks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/tasks.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/info/variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/info/variables.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/os.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/os.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/os/cd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/os/cd.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/os/pwd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/os/pwd.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/os/shell.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/os/shell.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/running.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/running/continue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/running/continue.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/running/finish.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/running/finish.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/running/next.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/running/next.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/running/quit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/running/quit.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/running/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/running/run.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/running/skip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/running/skip.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/running/step.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/running/step.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/set.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/set/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/set/basename.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/set/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/set/debug.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/set/ignore-errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/set/ignore-errors.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/set/keep-going.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/set/keep-going.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/set/setq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/set/setq.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/set/setqx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/set/setqx.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/set/silent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/set/silent.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show/args.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show/basename.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show/commands.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show/debug.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show/ignore-errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show/ignore-errors.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show/keep-going.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show/keep-going.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show/silent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show/silent.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/show/version.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/show/version.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/stack.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/stack/backtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/stack/backtrace.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/stack/down.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/stack/down.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/stack/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/stack/frame.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/stack/up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/stack/up.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/support.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/support/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/support/help.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/commands/support/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/commands/support/source.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/entry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/entry.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/sessions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/sessions.rst -------------------------------------------------------------------------------- /doc/readthedocs/debugger/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/debugger/syntax.rst -------------------------------------------------------------------------------- /doc/readthedocs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/features.rst -------------------------------------------------------------------------------- /doc/readthedocs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/index.rst -------------------------------------------------------------------------------- /doc/readthedocs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/install.rst -------------------------------------------------------------------------------- /doc/readthedocs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/make.bat -------------------------------------------------------------------------------- /doc/readthedocs/manpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/readthedocs/manpage.rst -------------------------------------------------------------------------------- /doc/remake.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/remake.texi -------------------------------------------------------------------------------- /doc/sourceforge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/sourceforge/index.html -------------------------------------------------------------------------------- /doc/sourceforge/remake-profiled2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/sourceforge/remake-profiled2.png -------------------------------------------------------------------------------- /doc/sourceforge/remake-search-parent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/sourceforge/remake-search-parent.gif -------------------------------------------------------------------------------- /doc/sourceforge/remake-session0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/sourceforge/remake-session0.gif -------------------------------------------------------------------------------- /doc/sourceforge/remake-trace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/doc/sourceforge/remake-trace.gif -------------------------------------------------------------------------------- /git2cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/git2cl -------------------------------------------------------------------------------- /glob/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/glob/.gitignore -------------------------------------------------------------------------------- /glob/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/glob/COPYING.LIB -------------------------------------------------------------------------------- /glob/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/glob/ChangeLog -------------------------------------------------------------------------------- /glob/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/glob/Makefile.am -------------------------------------------------------------------------------- /glob/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/glob/fnmatch.c -------------------------------------------------------------------------------- /glob/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/glob/fnmatch.h -------------------------------------------------------------------------------- /glob/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/glob/glob.c -------------------------------------------------------------------------------- /glob/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/glob/glob.h -------------------------------------------------------------------------------- /gmk-default.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/gmk-default.scm -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/_Noreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/_Noreturn.h -------------------------------------------------------------------------------- /lib/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/access.c -------------------------------------------------------------------------------- /lib/alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/alloca.c -------------------------------------------------------------------------------- /lib/alloca.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/alloca.in.h -------------------------------------------------------------------------------- /lib/arg-nonnull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/arg-nonnull.h -------------------------------------------------------------------------------- /lib/basename-lgpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/basename-lgpl.c -------------------------------------------------------------------------------- /lib/c++defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/c++defs.h -------------------------------------------------------------------------------- /lib/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/close.c -------------------------------------------------------------------------------- /lib/concat-filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/concat-filename.c -------------------------------------------------------------------------------- /lib/concat-filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/concat-filename.h -------------------------------------------------------------------------------- /lib/dirname-lgpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/dirname-lgpl.c -------------------------------------------------------------------------------- /lib/dirname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/dirname.h -------------------------------------------------------------------------------- /lib/dosname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/dosname.h -------------------------------------------------------------------------------- /lib/dup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/dup2.c -------------------------------------------------------------------------------- /lib/errno.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/errno.in.h -------------------------------------------------------------------------------- /lib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/error.c -------------------------------------------------------------------------------- /lib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/error.h -------------------------------------------------------------------------------- /lib/exitfail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/exitfail.c -------------------------------------------------------------------------------- /lib/exitfail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/exitfail.h -------------------------------------------------------------------------------- /lib/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/fcntl.c -------------------------------------------------------------------------------- /lib/fcntl.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/fcntl.in.h -------------------------------------------------------------------------------- /lib/fd-hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/fd-hook.c -------------------------------------------------------------------------------- /lib/fd-hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/fd-hook.h -------------------------------------------------------------------------------- /lib/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/filename.h -------------------------------------------------------------------------------- /lib/findprog-in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/findprog-in.c -------------------------------------------------------------------------------- /lib/findprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/findprog.h -------------------------------------------------------------------------------- /lib/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/fnmatch.c -------------------------------------------------------------------------------- /lib/fnmatch.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/fnmatch.in.h -------------------------------------------------------------------------------- /lib/getdtablesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/getdtablesize.c -------------------------------------------------------------------------------- /lib/getloadavg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/getloadavg.c -------------------------------------------------------------------------------- /lib/getprogname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/getprogname.c -------------------------------------------------------------------------------- /lib/getprogname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/getprogname.h -------------------------------------------------------------------------------- /lib/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/gettext.h -------------------------------------------------------------------------------- /lib/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/glob.c -------------------------------------------------------------------------------- /lib/glob.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/glob.in.h -------------------------------------------------------------------------------- /lib/intprops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/intprops.h -------------------------------------------------------------------------------- /lib/limits.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/limits.in.h -------------------------------------------------------------------------------- /lib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/malloc.c -------------------------------------------------------------------------------- /lib/msvc-inval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/msvc-inval.c -------------------------------------------------------------------------------- /lib/msvc-inval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/msvc-inval.h -------------------------------------------------------------------------------- /lib/msvc-nothrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/msvc-nothrow.c -------------------------------------------------------------------------------- /lib/msvc-nothrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/msvc-nothrow.h -------------------------------------------------------------------------------- /lib/stdbool.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/stdbool.in.h -------------------------------------------------------------------------------- /lib/stddef.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/stddef.in.h -------------------------------------------------------------------------------- /lib/stdint.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/stdint.in.h -------------------------------------------------------------------------------- /lib/stdio.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/stdio.in.h -------------------------------------------------------------------------------- /lib/stdlib.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/stdlib.in.h -------------------------------------------------------------------------------- /lib/stpcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/stpcpy.c -------------------------------------------------------------------------------- /lib/strerror-override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/strerror-override.c -------------------------------------------------------------------------------- /lib/strerror-override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/strerror-override.h -------------------------------------------------------------------------------- /lib/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/strerror.c -------------------------------------------------------------------------------- /lib/string.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/string.in.h -------------------------------------------------------------------------------- /lib/stripslash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/stripslash.c -------------------------------------------------------------------------------- /lib/sys_types.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/sys_types.in.h -------------------------------------------------------------------------------- /lib/unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/unistd.c -------------------------------------------------------------------------------- /lib/unistd.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/unistd.in.h -------------------------------------------------------------------------------- /lib/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/verify.h -------------------------------------------------------------------------------- /lib/warn-on-use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/warn-on-use.h -------------------------------------------------------------------------------- /lib/xalloc-die.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/xalloc-die.c -------------------------------------------------------------------------------- /lib/xalloc-oversized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/xalloc-oversized.h -------------------------------------------------------------------------------- /lib/xalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/xalloc.h -------------------------------------------------------------------------------- /lib/xconcat-filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/xconcat-filename.c -------------------------------------------------------------------------------- /lib/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/lib/xmalloc.c -------------------------------------------------------------------------------- /libdebugger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/.gitignore -------------------------------------------------------------------------------- /libdebugger/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/Makefile.am -------------------------------------------------------------------------------- /libdebugger/break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/break.c -------------------------------------------------------------------------------- /libdebugger/break.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/break.h -------------------------------------------------------------------------------- /libdebugger/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/cmd.c -------------------------------------------------------------------------------- /libdebugger/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/cmd.h -------------------------------------------------------------------------------- /libdebugger/cmd_initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/cmd_initialize.h -------------------------------------------------------------------------------- /libdebugger/command/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | /.dirstamp 3 | -------------------------------------------------------------------------------- /libdebugger/command/break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/break.c -------------------------------------------------------------------------------- /libdebugger/command/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/chdir.c -------------------------------------------------------------------------------- /libdebugger/command/comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/comment.c -------------------------------------------------------------------------------- /libdebugger/command/continue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/continue.c -------------------------------------------------------------------------------- /libdebugger/command/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/delete.c -------------------------------------------------------------------------------- /libdebugger/command/down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/down.c -------------------------------------------------------------------------------- /libdebugger/command/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/edit.c -------------------------------------------------------------------------------- /libdebugger/command/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/expand.c -------------------------------------------------------------------------------- /libdebugger/command/finish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/finish.c -------------------------------------------------------------------------------- /libdebugger/command/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/frame.c -------------------------------------------------------------------------------- /libdebugger/command/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help.c -------------------------------------------------------------------------------- /libdebugger/command/help/break.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/break.h -------------------------------------------------------------------------------- /libdebugger/command/help/chdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/chdir.h -------------------------------------------------------------------------------- /libdebugger/command/help/comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/comment.h -------------------------------------------------------------------------------- /libdebugger/command/help/continue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/continue.h -------------------------------------------------------------------------------- /libdebugger/command/help/delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/delete.h -------------------------------------------------------------------------------- /libdebugger/command/help/down.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/down.h -------------------------------------------------------------------------------- /libdebugger/command/help/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/edit.h -------------------------------------------------------------------------------- /libdebugger/command/help/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/expand.h -------------------------------------------------------------------------------- /libdebugger/command/help/finish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/finish.h -------------------------------------------------------------------------------- /libdebugger/command/help/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/frame.h -------------------------------------------------------------------------------- /libdebugger/command/help/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/help.h -------------------------------------------------------------------------------- /libdebugger/command/help/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/info.h -------------------------------------------------------------------------------- /libdebugger/command/help/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/list.h -------------------------------------------------------------------------------- /libdebugger/command/help/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/load.h -------------------------------------------------------------------------------- /libdebugger/command/help/next.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/next.h -------------------------------------------------------------------------------- /libdebugger/command/help/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/print.h -------------------------------------------------------------------------------- /libdebugger/command/help/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/pwd.h -------------------------------------------------------------------------------- /libdebugger/command/help/quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/quit.h -------------------------------------------------------------------------------- /libdebugger/command/help/run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/run.h -------------------------------------------------------------------------------- /libdebugger/command/help/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/set.h -------------------------------------------------------------------------------- /libdebugger/command/help/setq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/setq.h -------------------------------------------------------------------------------- /libdebugger/command/help/setqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/setqx.h -------------------------------------------------------------------------------- /libdebugger/command/help/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/shell.h -------------------------------------------------------------------------------- /libdebugger/command/help/show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/show.h -------------------------------------------------------------------------------- /libdebugger/command/help/skip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/skip.h -------------------------------------------------------------------------------- /libdebugger/command/help/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/source.h -------------------------------------------------------------------------------- /libdebugger/command/help/step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/step.h -------------------------------------------------------------------------------- /libdebugger/command/help/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/target.h -------------------------------------------------------------------------------- /libdebugger/command/help/up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/up.h -------------------------------------------------------------------------------- /libdebugger/command/help/where.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/where.h -------------------------------------------------------------------------------- /libdebugger/command/help/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/help/write.h -------------------------------------------------------------------------------- /libdebugger/command/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/info.c -------------------------------------------------------------------------------- /libdebugger/command/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/list.c -------------------------------------------------------------------------------- /libdebugger/command/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/load.c -------------------------------------------------------------------------------- /libdebugger/command/next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/next.c -------------------------------------------------------------------------------- /libdebugger/command/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/print.c -------------------------------------------------------------------------------- /libdebugger/command/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/pwd.c -------------------------------------------------------------------------------- /libdebugger/command/quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/quit.c -------------------------------------------------------------------------------- /libdebugger/command/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/run.c -------------------------------------------------------------------------------- /libdebugger/command/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/set.c -------------------------------------------------------------------------------- /libdebugger/command/setq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/setq.c -------------------------------------------------------------------------------- /libdebugger/command/setqx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/setqx.c -------------------------------------------------------------------------------- /libdebugger/command/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/shell.c -------------------------------------------------------------------------------- /libdebugger/command/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/show.c -------------------------------------------------------------------------------- /libdebugger/command/skip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/skip.c -------------------------------------------------------------------------------- /libdebugger/command/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/source.c -------------------------------------------------------------------------------- /libdebugger/command/step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/step.c -------------------------------------------------------------------------------- /libdebugger/command/target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/target.c -------------------------------------------------------------------------------- /libdebugger/command/up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/up.c -------------------------------------------------------------------------------- /libdebugger/command/where.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/where.c -------------------------------------------------------------------------------- /libdebugger/command/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/command/write.c -------------------------------------------------------------------------------- /libdebugger/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/commands.h -------------------------------------------------------------------------------- /libdebugger/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/debugger.h -------------------------------------------------------------------------------- /libdebugger/file2line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/file2line.c -------------------------------------------------------------------------------- /libdebugger/file2line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/file2line.h -------------------------------------------------------------------------------- /libdebugger/fns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/fns.c -------------------------------------------------------------------------------- /libdebugger/fns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/fns.h -------------------------------------------------------------------------------- /libdebugger/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/info.h -------------------------------------------------------------------------------- /libdebugger/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/msg.c -------------------------------------------------------------------------------- /libdebugger/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/msg.h -------------------------------------------------------------------------------- /libdebugger/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/stack.c -------------------------------------------------------------------------------- /libdebugger/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/stack.h -------------------------------------------------------------------------------- /libdebugger/subcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/libdebugger/subcmd.h -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/00gnulib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/00gnulib.m4 -------------------------------------------------------------------------------- /m4/absolute-header.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/absolute-header.m4 -------------------------------------------------------------------------------- /m4/access.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/access.m4 -------------------------------------------------------------------------------- /m4/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/acinclude.m4 -------------------------------------------------------------------------------- /m4/alloca.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/alloca.m4 -------------------------------------------------------------------------------- /m4/asm-underscore.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/asm-underscore.m4 -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/close.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/close.m4 -------------------------------------------------------------------------------- /m4/dirname.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/dirname.m4 -------------------------------------------------------------------------------- /m4/dospaths.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/dospaths.m4 -------------------------------------------------------------------------------- /m4/double-slash-root.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/double-slash-root.m4 -------------------------------------------------------------------------------- /m4/dup2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/dup2.m4 -------------------------------------------------------------------------------- /m4/eaccess.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/eaccess.m4 -------------------------------------------------------------------------------- /m4/errno_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/errno_h.m4 -------------------------------------------------------------------------------- /m4/error.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/error.m4 -------------------------------------------------------------------------------- /m4/extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/extensions.m4 -------------------------------------------------------------------------------- /m4/fcntl-o.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/fcntl-o.m4 -------------------------------------------------------------------------------- /m4/fcntl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/fcntl.m4 -------------------------------------------------------------------------------- /m4/fcntl_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/fcntl_h.m4 -------------------------------------------------------------------------------- /m4/findprog-in.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/findprog-in.m4 -------------------------------------------------------------------------------- /m4/getdtablesize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/getdtablesize.m4 -------------------------------------------------------------------------------- /m4/getloadavg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/getloadavg.m4 -------------------------------------------------------------------------------- /m4/getprogname.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/getprogname.m4 -------------------------------------------------------------------------------- /m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/gettext.m4 -------------------------------------------------------------------------------- /m4/gnulib-cache.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/gnulib-cache.m4 -------------------------------------------------------------------------------- /m4/gnulib-common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/gnulib-common.m4 -------------------------------------------------------------------------------- /m4/gnulib-comp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/gnulib-comp.m4 -------------------------------------------------------------------------------- /m4/host-cpu-c-abi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/host-cpu-c-abi.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /m4/include_next.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/include_next.m4 -------------------------------------------------------------------------------- /m4/intlmacosx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/intlmacosx.m4 -------------------------------------------------------------------------------- /m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/lib-ld.m4 -------------------------------------------------------------------------------- /m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/lib-link.m4 -------------------------------------------------------------------------------- /m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /m4/limits-h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/limits-h.m4 -------------------------------------------------------------------------------- /m4/longlong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/longlong.m4 -------------------------------------------------------------------------------- /m4/malloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/malloc.m4 -------------------------------------------------------------------------------- /m4/msvc-inval.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/msvc-inval.m4 -------------------------------------------------------------------------------- /m4/msvc-nothrow.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/msvc-nothrow.m4 -------------------------------------------------------------------------------- /m4/multiarch.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/multiarch.m4 -------------------------------------------------------------------------------- /m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/nls.m4 -------------------------------------------------------------------------------- /m4/off_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/off_t.m4 -------------------------------------------------------------------------------- /m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/po.m4 -------------------------------------------------------------------------------- /m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/progtest.m4 -------------------------------------------------------------------------------- /m4/ssize_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/ssize_t.m4 -------------------------------------------------------------------------------- /m4/stdbool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/stdbool.m4 -------------------------------------------------------------------------------- /m4/stddef_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/stddef_h.m4 -------------------------------------------------------------------------------- /m4/stdint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/stdint.m4 -------------------------------------------------------------------------------- /m4/stdio_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/stdio_h.m4 -------------------------------------------------------------------------------- /m4/stdlib_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/stdlib_h.m4 -------------------------------------------------------------------------------- /m4/stpcpy.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/stpcpy.m4 -------------------------------------------------------------------------------- /m4/strerror.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/strerror.m4 -------------------------------------------------------------------------------- /m4/string_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/string_h.m4 -------------------------------------------------------------------------------- /m4/sys_socket_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/sys_socket_h.m4 -------------------------------------------------------------------------------- /m4/sys_types_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/sys_types_h.m4 -------------------------------------------------------------------------------- /m4/unistd_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/unistd_h.m4 -------------------------------------------------------------------------------- /m4/warn-on-use.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/warn-on-use.m4 -------------------------------------------------------------------------------- /m4/wchar_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/wchar_t.m4 -------------------------------------------------------------------------------- /m4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/wint_t.m4 -------------------------------------------------------------------------------- /m4/xalloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/m4/xalloc.m4 -------------------------------------------------------------------------------- /maintMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/maintMakefile -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/po/.gitignore -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makefile.in.in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/po/Makefile.in.in.patch -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/profile/README.md -------------------------------------------------------------------------------- /profile/call2png.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/profile/call2png.sh -------------------------------------------------------------------------------- /rpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/rpm/README.md -------------------------------------------------------------------------------- /rpm/remake-centos6.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/rpm/remake-centos6.spec -------------------------------------------------------------------------------- /rpm/remake-centos7.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/rpm/remake-centos7.spec -------------------------------------------------------------------------------- /screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/README.md -------------------------------------------------------------------------------- /screenshots/remake-profiled2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/remake-profiled2.png -------------------------------------------------------------------------------- /screenshots/remake-search-parent.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/remake-search-parent.cast -------------------------------------------------------------------------------- /screenshots/remake-search-parent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/remake-search-parent.gif -------------------------------------------------------------------------------- /screenshots/remake-session3.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/remake-session3.cast -------------------------------------------------------------------------------- /screenshots/remake-tasks.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/remake-tasks.cast -------------------------------------------------------------------------------- /screenshots/remake-tasks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/remake-tasks.gif -------------------------------------------------------------------------------- /screenshots/remake-trace.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/remake-trace.cast -------------------------------------------------------------------------------- /screenshots/remake-trace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/screenshots/remake-trace.gif -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/alloc.c -------------------------------------------------------------------------------- /src/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/ar.c -------------------------------------------------------------------------------- /src/arscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/arscan.c -------------------------------------------------------------------------------- /src/buildargv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/buildargv.c -------------------------------------------------------------------------------- /src/buildargv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/buildargv.h -------------------------------------------------------------------------------- /src/callgrind_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/callgrind_format.c -------------------------------------------------------------------------------- /src/callgrind_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/callgrind_format.h -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/commands.h -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /.dirstamp 2 | -------------------------------------------------------------------------------- /src/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/default.c -------------------------------------------------------------------------------- /src/dep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/dep.h -------------------------------------------------------------------------------- /src/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/dir.c -------------------------------------------------------------------------------- /src/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/expand.c -------------------------------------------------------------------------------- /src/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/expand.h -------------------------------------------------------------------------------- /src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/file.c -------------------------------------------------------------------------------- /src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/file.h -------------------------------------------------------------------------------- /src/file_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/file_basic.c -------------------------------------------------------------------------------- /src/file_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/file_basic.h -------------------------------------------------------------------------------- /src/filedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/filedef.h -------------------------------------------------------------------------------- /src/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/function.c -------------------------------------------------------------------------------- /src/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/function.h -------------------------------------------------------------------------------- /src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/getopt.c -------------------------------------------------------------------------------- /src/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/getopt.h -------------------------------------------------------------------------------- /src/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/getopt1.c -------------------------------------------------------------------------------- /src/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/gettext.h -------------------------------------------------------------------------------- /src/git2cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/git2cl -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/gmk-default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/gmk-default.h -------------------------------------------------------------------------------- /src/gmk-default.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/gmk-default.scm -------------------------------------------------------------------------------- /src/gnuremake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/gnuremake.h -------------------------------------------------------------------------------- /src/guile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/guile.c -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/implicit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/implicit.c -------------------------------------------------------------------------------- /src/implicit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/implicit.h -------------------------------------------------------------------------------- /src/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/job.c -------------------------------------------------------------------------------- /src/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/job.h -------------------------------------------------------------------------------- /src/json_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/json_format.c -------------------------------------------------------------------------------- /src/json_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/json_format.h -------------------------------------------------------------------------------- /src/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/load.c -------------------------------------------------------------------------------- /src/loadapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/loadapi.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/main.h -------------------------------------------------------------------------------- /src/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/make.h -------------------------------------------------------------------------------- /src/makeint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/makeint.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/mock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/mock.c -------------------------------------------------------------------------------- /src/mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/mock.h -------------------------------------------------------------------------------- /src/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/os.h -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/output.c -------------------------------------------------------------------------------- /src/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/output.h -------------------------------------------------------------------------------- /src/posixos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/posixos.c -------------------------------------------------------------------------------- /src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/print.c -------------------------------------------------------------------------------- /src/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/print.h -------------------------------------------------------------------------------- /src/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/profile.c -------------------------------------------------------------------------------- /src/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/profile.h -------------------------------------------------------------------------------- /src/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/read.c -------------------------------------------------------------------------------- /src/read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/read.h -------------------------------------------------------------------------------- /src/remake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/remake.c -------------------------------------------------------------------------------- /src/remote-cstms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/remote-cstms.c -------------------------------------------------------------------------------- /src/remote-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/remote-stub.c -------------------------------------------------------------------------------- /src/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/rule.c -------------------------------------------------------------------------------- /src/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/rule.h -------------------------------------------------------------------------------- /src/signame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/signame.c -------------------------------------------------------------------------------- /src/strcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/strcache.c -------------------------------------------------------------------------------- /src/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/trace.c -------------------------------------------------------------------------------- /src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/trace.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/types.h -------------------------------------------------------------------------------- /src/variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/variable.c -------------------------------------------------------------------------------- /src/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/variable.h -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/version.c -------------------------------------------------------------------------------- /src/vpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/vpath.c -------------------------------------------------------------------------------- /src/vpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/vpath.h -------------------------------------------------------------------------------- /src/w32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/w32/README.md -------------------------------------------------------------------------------- /src/w32/w32os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/src/w32/w32os.c -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/README -------------------------------------------------------------------------------- /tests/config-flags.pm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/config-flags.pm.in -------------------------------------------------------------------------------- /tests/guile.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/guile.supp -------------------------------------------------------------------------------- /tests/mkshadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/mkshadow -------------------------------------------------------------------------------- /tests/run_make_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/run_make_tests -------------------------------------------------------------------------------- /tests/run_make_tests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/run_make_tests.pl -------------------------------------------------------------------------------- /tests/scripts/features/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/archives -------------------------------------------------------------------------------- /tests/scripts/features/comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/comments -------------------------------------------------------------------------------- /tests/scripts/features/conditionals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/conditionals -------------------------------------------------------------------------------- /tests/scripts/features/default_names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/default_names -------------------------------------------------------------------------------- /tests/scripts/features/double_colon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/double_colon -------------------------------------------------------------------------------- /tests/scripts/features/echoing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/echoing -------------------------------------------------------------------------------- /tests/scripts/features/errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/errors -------------------------------------------------------------------------------- /tests/scripts/features/escape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/escape -------------------------------------------------------------------------------- /tests/scripts/features/exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/exec -------------------------------------------------------------------------------- /tests/scripts/features/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/export -------------------------------------------------------------------------------- /tests/scripts/features/grouped_targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/grouped_targets -------------------------------------------------------------------------------- /tests/scripts/features/include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/include -------------------------------------------------------------------------------- /tests/scripts/features/jobserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/jobserver -------------------------------------------------------------------------------- /tests/scripts/features/load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/load -------------------------------------------------------------------------------- /tests/scripts/features/loadapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/loadapi -------------------------------------------------------------------------------- /tests/scripts/features/mult_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/mult_rules -------------------------------------------------------------------------------- /tests/scripts/features/mult_targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/mult_targets -------------------------------------------------------------------------------- /tests/scripts/features/order_only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/order_only -------------------------------------------------------------------------------- /tests/scripts/features/output-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/output-sync -------------------------------------------------------------------------------- /tests/scripts/features/override: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/override -------------------------------------------------------------------------------- /tests/scripts/features/parallelism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/parallelism -------------------------------------------------------------------------------- /tests/scripts/features/patspecific_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/patspecific_vars -------------------------------------------------------------------------------- /tests/scripts/features/patternrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/patternrules -------------------------------------------------------------------------------- /tests/scripts/features/quoting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/quoting -------------------------------------------------------------------------------- /tests/scripts/features/recursion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/recursion -------------------------------------------------------------------------------- /tests/scripts/features/reinvoke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/reinvoke -------------------------------------------------------------------------------- /tests/scripts/features/rule_glob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/rule_glob -------------------------------------------------------------------------------- /tests/scripts/features/se_explicit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/se_explicit -------------------------------------------------------------------------------- /tests/scripts/features/se_implicit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/se_implicit -------------------------------------------------------------------------------- /tests/scripts/features/se_statpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/se_statpat -------------------------------------------------------------------------------- /tests/scripts/features/shell_assignment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/shell_assignment -------------------------------------------------------------------------------- /tests/scripts/features/statipattrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/statipattrules -------------------------------------------------------------------------------- /tests/scripts/features/suffixrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/suffixrules -------------------------------------------------------------------------------- /tests/scripts/features/targetvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/targetvars -------------------------------------------------------------------------------- /tests/scripts/features/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/utf8 -------------------------------------------------------------------------------- /tests/scripts/features/varnesting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/varnesting -------------------------------------------------------------------------------- /tests/scripts/features/vpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/vpath -------------------------------------------------------------------------------- /tests/scripts/features/vpath2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/vpath2 -------------------------------------------------------------------------------- /tests/scripts/features/vpath3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/vpath3 -------------------------------------------------------------------------------- /tests/scripts/features/vpathgpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/vpathgpath -------------------------------------------------------------------------------- /tests/scripts/features/vpathplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/features/vpathplus -------------------------------------------------------------------------------- /tests/scripts/functions/abspath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/abspath -------------------------------------------------------------------------------- /tests/scripts/functions/addprefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/addprefix -------------------------------------------------------------------------------- /tests/scripts/functions/addsuffix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/addsuffix -------------------------------------------------------------------------------- /tests/scripts/functions/andor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/andor -------------------------------------------------------------------------------- /tests/scripts/functions/basename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/basename -------------------------------------------------------------------------------- /tests/scripts/functions/call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/call -------------------------------------------------------------------------------- /tests/scripts/functions/dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/dir -------------------------------------------------------------------------------- /tests/scripts/functions/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/error -------------------------------------------------------------------------------- /tests/scripts/functions/eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/eval -------------------------------------------------------------------------------- /tests/scripts/functions/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/file -------------------------------------------------------------------------------- /tests/scripts/functions/filter-out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/filter-out -------------------------------------------------------------------------------- /tests/scripts/functions/findstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/findstring -------------------------------------------------------------------------------- /tests/scripts/functions/flavor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/flavor -------------------------------------------------------------------------------- /tests/scripts/functions/foreach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/foreach -------------------------------------------------------------------------------- /tests/scripts/functions/guile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/guile -------------------------------------------------------------------------------- /tests/scripts/functions/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/if -------------------------------------------------------------------------------- /tests/scripts/functions/join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/join -------------------------------------------------------------------------------- /tests/scripts/functions/notdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/notdir -------------------------------------------------------------------------------- /tests/scripts/functions/origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/origin -------------------------------------------------------------------------------- /tests/scripts/functions/realpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/realpath -------------------------------------------------------------------------------- /tests/scripts/functions/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/shell -------------------------------------------------------------------------------- /tests/scripts/functions/sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/sort -------------------------------------------------------------------------------- /tests/scripts/functions/strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/strip -------------------------------------------------------------------------------- /tests/scripts/functions/substitution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/substitution -------------------------------------------------------------------------------- /tests/scripts/functions/suffix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/suffix -------------------------------------------------------------------------------- /tests/scripts/functions/value: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/value -------------------------------------------------------------------------------- /tests/scripts/functions/warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/warning -------------------------------------------------------------------------------- /tests/scripts/functions/wildcard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/wildcard -------------------------------------------------------------------------------- /tests/scripts/functions/word: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/functions/word -------------------------------------------------------------------------------- /tests/scripts/misc/bs-nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/misc/bs-nl -------------------------------------------------------------------------------- /tests/scripts/misc/close_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/misc/close_stdout -------------------------------------------------------------------------------- /tests/scripts/misc/fopen-fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/misc/fopen-fail -------------------------------------------------------------------------------- /tests/scripts/misc/general1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/misc/general1 -------------------------------------------------------------------------------- /tests/scripts/misc/general2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/misc/general2 -------------------------------------------------------------------------------- /tests/scripts/misc/general3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/misc/general3 -------------------------------------------------------------------------------- /tests/scripts/misc/general4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/misc/general4 -------------------------------------------------------------------------------- /tests/scripts/misc/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/misc/utf8 -------------------------------------------------------------------------------- /tests/scripts/options/dash-B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-B -------------------------------------------------------------------------------- /tests/scripts/options/dash-C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-C -------------------------------------------------------------------------------- /tests/scripts/options/dash-I: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-I -------------------------------------------------------------------------------- /tests/scripts/options/dash-W: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-W -------------------------------------------------------------------------------- /tests/scripts/options/dash-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-e -------------------------------------------------------------------------------- /tests/scripts/options/dash-f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-f -------------------------------------------------------------------------------- /tests/scripts/options/dash-k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-k -------------------------------------------------------------------------------- /tests/scripts/options/dash-l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-l -------------------------------------------------------------------------------- /tests/scripts/options/dash-lowercase-c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-lowercase-c -------------------------------------------------------------------------------- /tests/scripts/options/dash-n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-n -------------------------------------------------------------------------------- /tests/scripts/options/dash-q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-q -------------------------------------------------------------------------------- /tests/scripts/options/dash-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-s -------------------------------------------------------------------------------- /tests/scripts/options/dash-t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/dash-t -------------------------------------------------------------------------------- /tests/scripts/options/eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/eval -------------------------------------------------------------------------------- /tests/scripts/options/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/general -------------------------------------------------------------------------------- /tests/scripts/options/print-directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/print-directory -------------------------------------------------------------------------------- /tests/scripts/options/symlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/symlinks -------------------------------------------------------------------------------- /tests/scripts/options/warn-undefined-variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/options/warn-undefined-variables -------------------------------------------------------------------------------- /tests/scripts/remake/tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/remake/tasks -------------------------------------------------------------------------------- /tests/scripts/targets/DEFAULT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/DEFAULT -------------------------------------------------------------------------------- /tests/scripts/targets/DELETE_ON_ERROR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/DELETE_ON_ERROR -------------------------------------------------------------------------------- /tests/scripts/targets/FORCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/FORCE -------------------------------------------------------------------------------- /tests/scripts/targets/INTERMEDIATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/INTERMEDIATE -------------------------------------------------------------------------------- /tests/scripts/targets/ONESHELL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/ONESHELL -------------------------------------------------------------------------------- /tests/scripts/targets/PHONY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/PHONY -------------------------------------------------------------------------------- /tests/scripts/targets/POSIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/POSIX -------------------------------------------------------------------------------- /tests/scripts/targets/SECONDARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/SECONDARY -------------------------------------------------------------------------------- /tests/scripts/targets/SILENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/SILENT -------------------------------------------------------------------------------- /tests/scripts/targets/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/targets/clean -------------------------------------------------------------------------------- /tests/scripts/test_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/test_template -------------------------------------------------------------------------------- /tests/scripts/variables/CURDIR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/CURDIR -------------------------------------------------------------------------------- /tests/scripts/variables/DEFAULT_GOAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/DEFAULT_GOAL -------------------------------------------------------------------------------- /tests/scripts/variables/EXTRA_PREREQS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/EXTRA_PREREQS -------------------------------------------------------------------------------- /tests/scripts/variables/GNUMAKEFLAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/GNUMAKEFLAGS -------------------------------------------------------------------------------- /tests/scripts/variables/INCLUDE_DIRS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/INCLUDE_DIRS -------------------------------------------------------------------------------- /tests/scripts/variables/LIBPATTERNS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/LIBPATTERNS -------------------------------------------------------------------------------- /tests/scripts/variables/MAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/MAKE -------------------------------------------------------------------------------- /tests/scripts/variables/MAKECMDGOALS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/MAKECMDGOALS -------------------------------------------------------------------------------- /tests/scripts/variables/MAKEFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/MAKEFILES -------------------------------------------------------------------------------- /tests/scripts/variables/MAKEFLAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/MAKEFLAGS -------------------------------------------------------------------------------- /tests/scripts/variables/MAKELEVEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/MAKELEVEL -------------------------------------------------------------------------------- /tests/scripts/variables/MAKE_RESTARTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/MAKE_RESTARTS -------------------------------------------------------------------------------- /tests/scripts/variables/MFILE_LIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/MFILE_LIST -------------------------------------------------------------------------------- /tests/scripts/variables/SHELL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/SHELL -------------------------------------------------------------------------------- /tests/scripts/variables/automatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/automatic -------------------------------------------------------------------------------- /tests/scripts/variables/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/define -------------------------------------------------------------------------------- /tests/scripts/variables/flavors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/flavors -------------------------------------------------------------------------------- /tests/scripts/variables/negative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/negative -------------------------------------------------------------------------------- /tests/scripts/variables/private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/private -------------------------------------------------------------------------------- /tests/scripts/variables/special: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/special -------------------------------------------------------------------------------- /tests/scripts/variables/undefine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/scripts/variables/undefine -------------------------------------------------------------------------------- /tests/spec/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | -------------------------------------------------------------------------------- /tests/spec/data/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | remake: That's all, folks... 3 | -------------------------------------------------------------------------------- /tests/spec/data/break-all.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/break-all.right -------------------------------------------------------------------------------- /tests/spec/data/break-end.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/break-end.right -------------------------------------------------------------------------------- /tests/spec/data/break-expand.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/break-expand.right -------------------------------------------------------------------------------- /tests/spec/data/break-prereq.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/break-prereq.right -------------------------------------------------------------------------------- /tests/spec/data/break-run.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/break-run.right -------------------------------------------------------------------------------- /tests/spec/data/break.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/break.right -------------------------------------------------------------------------------- /tests/spec/data/commented.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/commented.right -------------------------------------------------------------------------------- /tests/spec/data/continue.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/continue.right -------------------------------------------------------------------------------- /tests/spec/data/description-trace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/description-trace.right -------------------------------------------------------------------------------- /tests/spec/data/info-rule.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/info-rule.right -------------------------------------------------------------------------------- /tests/spec/data/info-target.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/info-target.right -------------------------------------------------------------------------------- /tests/spec/data/info-targets.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/info-targets.right -------------------------------------------------------------------------------- /tests/spec/data/list.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/list.right -------------------------------------------------------------------------------- /tests/spec/data/norl.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/norl.right -------------------------------------------------------------------------------- /tests/spec/data/opt-x-trace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/opt-x-trace.right -------------------------------------------------------------------------------- /tests/spec/data/opt-y-trace.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/opt-y-trace.right -------------------------------------------------------------------------------- /tests/spec/data/remakerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/remakerc -------------------------------------------------------------------------------- /tests/spec/data/set.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/set.right -------------------------------------------------------------------------------- /tests/spec/data/source.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/source.right -------------------------------------------------------------------------------- /tests/spec/data/step3.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/data/step3.right -------------------------------------------------------------------------------- /tests/spec/example/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | -------------------------------------------------------------------------------- /tests/spec/example/commented.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/example/commented.Makefile -------------------------------------------------------------------------------- /tests/spec/example/debug-call.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/example/debug-call.Makefile -------------------------------------------------------------------------------- /tests/spec/example/debugger.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/example/debugger.Makefile -------------------------------------------------------------------------------- /tests/spec/example/implicit.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/example/implicit.Makefile -------------------------------------------------------------------------------- /tests/spec/example/order-only.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/example/order-only.Makefile -------------------------------------------------------------------------------- /tests/spec/example/simple.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/example/simple.Makefile -------------------------------------------------------------------------------- /tests/spec/example/test2.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/example/test2.Makefile -------------------------------------------------------------------------------- /tests/spec/example/triple.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/example/triple.Makefile -------------------------------------------------------------------------------- /tests/spec/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/helper.rb -------------------------------------------------------------------------------- /tests/spec/run-tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/run-tests.rb -------------------------------------------------------------------------------- /tests/spec/test-break.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-break.rb -------------------------------------------------------------------------------- /tests/spec/test-commented.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-commented.rb -------------------------------------------------------------------------------- /tests/spec/test-continue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-continue.rb -------------------------------------------------------------------------------- /tests/spec/test-info-rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-info-rule.rb -------------------------------------------------------------------------------- /tests/spec/test-info-target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-info-target.rb -------------------------------------------------------------------------------- /tests/spec/test-info-targets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-info-targets.rb -------------------------------------------------------------------------------- /tests/spec/test-list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-list.rb -------------------------------------------------------------------------------- /tests/spec/test-norl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-norl.rb -------------------------------------------------------------------------------- /tests/spec/test-set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-set.rb -------------------------------------------------------------------------------- /tests/spec/test-source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-source.rb -------------------------------------------------------------------------------- /tests/spec/test-step3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-step3.rb -------------------------------------------------------------------------------- /tests/spec/test-tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-tasks.rb -------------------------------------------------------------------------------- /tests/spec/test-trace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/spec/test-trace.rb -------------------------------------------------------------------------------- /tests/test_driver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/test_driver.pl -------------------------------------------------------------------------------- /tests/thelp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/tests/thelp.pl -------------------------------------------------------------------------------- /unittest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/unittest/.gitignore -------------------------------------------------------------------------------- /unittest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/unittest/Makefile.am -------------------------------------------------------------------------------- /unittest/test_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/remake/HEAD/unittest/test_profile.c --------------------------------------------------------------------------------