├── .gitignore
├── .travis.yml
├── CHANGES.md
├── CONTRIB.md
├── COPYING
├── Gopkg.lock
├── Gopkg.toml
├── HyperMake
├── MAINTAINERS
├── README.md
├── docker
├── docker-darwin.go
├── docker-linux.go
├── docker-machine.go
├── docker-windows.go
└── docker.go
├── examples
├── arm-hello
│ ├── .gitignore
│ ├── HyperMake
│ ├── Makefile
│ ├── README.md
│ └── hello.c
└── linux
│ ├── .gitignore
│ ├── HyperMake
│ ├── README.md
│ ├── build.sh
│ ├── builders
│ ├── armv7.Dockerfile
│ ├── armv7.hmake
│ ├── x86_64.Dockerfile
│ └── x86_64.hmake
│ ├── fetch.sh
│ └── targets
│ ├── arm-vexpress
│ ├── config
│ └── target.hmake
│ └── x86_64-generic
│ ├── config
│ └── target.hmake
├── hack
├── builder
│ └── Dockerfile
└── image
│ └── Dockerfile
├── hmake-cli.go
├── logo
├── HYPERMAKE-h.png
├── HYPERMAKE-m.png
├── HYPERMAKE-v.png
├── HYPERMAKE.ai
├── HYPERMAKE.pdf
├── HYPERMAKE.png
├── HYPERMAKE.svg
├── final logo logotype.svg
├── final logo logotype2.svg
└── final logo.svg
├── main.go
├── project
├── exec.go
├── project.go
└── target.go
├── shell
└── shell.go
├── site
└── gh-pages
│ ├── .gitignore
│ ├── config.toml
│ ├── content
│ ├── intro
│ │ └── _index.md
│ ├── quickguide
│ │ ├── _index.md
│ │ ├── helloworld.md
│ │ └── install.md
│ ├── references
│ │ ├── _index.md
│ │ ├── commandline.md
│ │ ├── dockerdrv.md
│ │ └── fileformat.md
│ └── tutor
│ │ ├── _index.md
│ │ ├── buildimage.md
│ │ ├── commandmode.md
│ │ ├── compose.md
│ │ ├── execmode.md
│ │ ├── faq.md
│ │ ├── mapcreds.md
│ │ ├── project.md
│ │ ├── pushimage.md
│ │ ├── targetexec.md
│ │ ├── targetexp.md
│ │ └── wrappermode.md
│ ├── layouts
│ ├── index.html
│ └── partials
│ │ ├── favicon.html
│ │ ├── logo.html
│ │ ├── menu-footer.html
│ │ └── style.html
│ ├── static
│ ├── css
│ │ └── default.css
│ └── images
│ │ ├── arm-hello.gif
│ │ └── favicon.png
│ └── themes
│ └── hugo-theme-learn
│ ├── .gitignore
│ ├── LICENSE.md
│ ├── README.md
│ ├── archetypes
│ ├── chapter.md
│ └── default.md
│ ├── images
│ ├── screenshot.png
│ └── tn.png
│ ├── layouts
│ ├── 404.html
│ ├── _default
│ │ ├── list.html
│ │ └── single.html
│ ├── index.html
│ ├── partials
│ │ ├── favicon.html
│ │ ├── footer.html
│ │ ├── header.html
│ │ ├── logo.html
│ │ ├── menu-footer.html
│ │ ├── menu.html
│ │ ├── meta.html
│ │ ├── script.html
│ │ ├── search.html
│ │ ├── style.html
│ │ └── toc.html
│ └── shortcodes
│ │ ├── button.html
│ │ └── notice.html
│ ├── static
│ ├── css
│ │ ├── featherlight.min.css
│ │ ├── font-awesome.min.css
│ │ ├── horsey.css
│ │ ├── hugo-theme.css
│ │ ├── hybrid.css
│ │ ├── nucleus.css
│ │ ├── perfect-scrollbar.min.css
│ │ └── theme.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── Inconsolata.eot
│ │ ├── Inconsolata.svg
│ │ ├── Inconsolata.ttf
│ │ ├── Inconsolata.woff
│ │ ├── Novecentosanswide-Normal-webfont.eot
│ │ ├── Novecentosanswide-Normal-webfont.svg
│ │ ├── Novecentosanswide-Normal-webfont.ttf
│ │ ├── Novecentosanswide-Normal-webfont.woff
│ │ ├── Novecentosanswide-Normal-webfont.woff2
│ │ ├── Novecentosanswide-UltraLight-webfont.eot
│ │ ├── Novecentosanswide-UltraLight-webfont.svg
│ │ ├── Novecentosanswide-UltraLight-webfont.ttf
│ │ ├── Novecentosanswide-UltraLight-webfont.woff
│ │ ├── Novecentosanswide-UltraLight-webfont.woff2
│ │ ├── Work_Sans_200.eot
│ │ ├── Work_Sans_200.svg
│ │ ├── Work_Sans_200.ttf
│ │ ├── Work_Sans_200.woff
│ │ ├── Work_Sans_200.woff2
│ │ ├── Work_Sans_300.eot
│ │ ├── Work_Sans_300.svg
│ │ ├── Work_Sans_300.ttf
│ │ ├── Work_Sans_300.woff
│ │ ├── Work_Sans_300.woff2
│ │ ├── Work_Sans_500.eot
│ │ ├── Work_Sans_500.svg
│ │ ├── Work_Sans_500.ttf
│ │ ├── Work_Sans_500.woff
│ │ ├── Work_Sans_500.woff2
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── images
│ │ ├── clippy.svg
│ │ ├── favicon.png
│ │ └── gopher-404.jpg
│ ├── js
│ │ ├── clipboard.min.js
│ │ ├── featherlight.min.js
│ │ ├── highlight.pack.js
│ │ ├── horsey.js
│ │ ├── html5shiv-printshiv.min.js
│ │ ├── hugo-learn.js
│ │ ├── jquery-2.x.min.js
│ │ ├── jquery.sticky-kit.min.js
│ │ ├── learn.js
│ │ ├── lunr.min.js
│ │ ├── modernizr.custom.71422.js
│ │ ├── perfect-scrollbar.jquery.min.js
│ │ ├── perfect-scrollbar.min.js
│ │ └── search.js
│ └── json
│ │ └── search.json
│ └── theme.toml
└── test
├── doc.go
├── e2e
├── command-mode
│ └── HyperMake
├── docker-abort
│ └── HyperMake
├── docker-cmds-change
│ ├── HyperMake
│ └── HyperMake.changed
├── docker-commit
│ └── HyperMake
├── docker-compose
│ ├── HyperMake
│ └── dir
│ │ └── docker-compose.yml
├── docker-dir
│ ├── HyperMake
│ └── subdir
│ │ ├── sub.hmake
│ │ └── vol
│ │ └── somefile
├── docker-env
│ └── HyperMake
├── docker-user
│ └── HyperMake
├── docker
│ ├── Dockerfile
│ └── HyperMake
├── e2e_test.go
├── suite.go
└── wrapper-mode
│ ├── Dockerfile
│ ├── HyperMake
│ └── Makefile
├── fixtures
├── always-target
│ └── HyperMake
├── artifacts
│ └── HyperMake
├── bad-project-name
│ └── HyperMake
├── bad-target-name
│ └── HyperMake
├── deps-rebuild
│ └── HyperMake
├── exec-order
│ └── HyperMake
├── missing-project-name
│ └── HyperMake
├── project-abort
│ └── HyperMake
├── project-load
│ └── HyperMake
├── project0
│ ├── HyperMake
│ └── subproject
│ │ ├── subdir
│ │ ├── HyperMake
│ │ └── subdir2
│ │ │ └── somefile
│ │ └── subproj.hmake
├── project1
│ └── HyperMake
├── project2
│ ├── .hmakerc
│ ├── HyperMake
│ └── subdir
│ │ └── .hmakerc
├── samples
│ ├── bad-format.hmake
│ ├── cyclic-deps.hmake
│ ├── dep-undefined.hmake
│ ├── dup-target.hmake
│ ├── inc-a.hmake
│ ├── inc-nested.hmake
│ ├── include-nonexist.hmake
│ ├── includes.hmake
│ ├── includes
│ │ ├── inc1.hmake
│ │ ├── inc2.hmake
│ │ └── subdir
│ │ │ └── deep.hmake
│ ├── invalid-yaml.hmake
│ ├── missing-format.hmake
│ └── target-names.hmake
├── skip-transit-targets
│ └── HyperMake
├── target-expand
│ ├── bad-name
│ │ └── HyperMake
│ ├── dup-target
│ │ └── HyperMake
│ ├── expand0
│ │ └── HyperMake
│ └── missing-bracket
│ │ └── HyperMake
├── task-change
│ ├── HyperMake
│ └── HyperMake.changed
├── workdir
│ ├── HyperMake
│ └── subdir
│ │ └── sub.hmake
└── wrapper
│ ├── explicit-interpreter
│ └── HyperMake
│ ├── implicit-interpreter
│ └── HyperMake
│ ├── no-content
│ └── HyperMake
│ └── with-build
│ └── HyperMake
├── hmake_test.go
└── suite.go
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/.gitignore
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/.travis.yml
--------------------------------------------------------------------------------
/CHANGES.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/CHANGES.md
--------------------------------------------------------------------------------
/CONTRIB.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/CONTRIB.md
--------------------------------------------------------------------------------
/COPYING:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/COPYING
--------------------------------------------------------------------------------
/Gopkg.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/Gopkg.lock
--------------------------------------------------------------------------------
/Gopkg.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/Gopkg.toml
--------------------------------------------------------------------------------
/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/HyperMake
--------------------------------------------------------------------------------
/MAINTAINERS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/MAINTAINERS
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/README.md
--------------------------------------------------------------------------------
/docker/docker-darwin.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/docker/docker-darwin.go
--------------------------------------------------------------------------------
/docker/docker-linux.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/docker/docker-linux.go
--------------------------------------------------------------------------------
/docker/docker-machine.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/docker/docker-machine.go
--------------------------------------------------------------------------------
/docker/docker-windows.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/docker/docker-windows.go
--------------------------------------------------------------------------------
/docker/docker.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/docker/docker.go
--------------------------------------------------------------------------------
/examples/arm-hello/.gitignore:
--------------------------------------------------------------------------------
1 | hello
--------------------------------------------------------------------------------
/examples/arm-hello/HyperMake:
--------------------------------------------------------------------------------
1 | #hmake-wrapper dockcross/linux-armv7
2 |
--------------------------------------------------------------------------------
/examples/arm-hello/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/arm-hello/Makefile
--------------------------------------------------------------------------------
/examples/arm-hello/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/arm-hello/README.md
--------------------------------------------------------------------------------
/examples/arm-hello/hello.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/arm-hello/hello.c
--------------------------------------------------------------------------------
/examples/linux/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 |
--------------------------------------------------------------------------------
/examples/linux/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/HyperMake
--------------------------------------------------------------------------------
/examples/linux/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/README.md
--------------------------------------------------------------------------------
/examples/linux/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/build.sh
--------------------------------------------------------------------------------
/examples/linux/builders/armv7.Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/builders/armv7.Dockerfile
--------------------------------------------------------------------------------
/examples/linux/builders/armv7.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/builders/armv7.hmake
--------------------------------------------------------------------------------
/examples/linux/builders/x86_64.Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/builders/x86_64.Dockerfile
--------------------------------------------------------------------------------
/examples/linux/builders/x86_64.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/builders/x86_64.hmake
--------------------------------------------------------------------------------
/examples/linux/fetch.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/fetch.sh
--------------------------------------------------------------------------------
/examples/linux/targets/arm-vexpress/config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/targets/arm-vexpress/config
--------------------------------------------------------------------------------
/examples/linux/targets/arm-vexpress/target.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/targets/arm-vexpress/target.hmake
--------------------------------------------------------------------------------
/examples/linux/targets/x86_64-generic/config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/targets/x86_64-generic/config
--------------------------------------------------------------------------------
/examples/linux/targets/x86_64-generic/target.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/examples/linux/targets/x86_64-generic/target.hmake
--------------------------------------------------------------------------------
/hack/builder/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/hack/builder/Dockerfile
--------------------------------------------------------------------------------
/hack/image/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/hack/image/Dockerfile
--------------------------------------------------------------------------------
/hmake-cli.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/hmake-cli.go
--------------------------------------------------------------------------------
/logo/HYPERMAKE-h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/HYPERMAKE-h.png
--------------------------------------------------------------------------------
/logo/HYPERMAKE-m.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/HYPERMAKE-m.png
--------------------------------------------------------------------------------
/logo/HYPERMAKE-v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/HYPERMAKE-v.png
--------------------------------------------------------------------------------
/logo/HYPERMAKE.ai:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/HYPERMAKE.ai
--------------------------------------------------------------------------------
/logo/HYPERMAKE.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/HYPERMAKE.pdf
--------------------------------------------------------------------------------
/logo/HYPERMAKE.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/HYPERMAKE.png
--------------------------------------------------------------------------------
/logo/HYPERMAKE.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/HYPERMAKE.svg
--------------------------------------------------------------------------------
/logo/final logo logotype.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/final logo logotype.svg
--------------------------------------------------------------------------------
/logo/final logo logotype2.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/final logo logotype2.svg
--------------------------------------------------------------------------------
/logo/final logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/logo/final logo.svg
--------------------------------------------------------------------------------
/main.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/main.go
--------------------------------------------------------------------------------
/project/exec.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/project/exec.go
--------------------------------------------------------------------------------
/project/project.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/project/project.go
--------------------------------------------------------------------------------
/project/target.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/project/target.go
--------------------------------------------------------------------------------
/shell/shell.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/shell/shell.go
--------------------------------------------------------------------------------
/site/gh-pages/.gitignore:
--------------------------------------------------------------------------------
1 | /public
2 | /static/json
3 |
--------------------------------------------------------------------------------
/site/gh-pages/config.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/config.toml
--------------------------------------------------------------------------------
/site/gh-pages/content/intro/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/intro/_index.md
--------------------------------------------------------------------------------
/site/gh-pages/content/quickguide/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/quickguide/_index.md
--------------------------------------------------------------------------------
/site/gh-pages/content/quickguide/helloworld.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/quickguide/helloworld.md
--------------------------------------------------------------------------------
/site/gh-pages/content/quickguide/install.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/quickguide/install.md
--------------------------------------------------------------------------------
/site/gh-pages/content/references/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/references/_index.md
--------------------------------------------------------------------------------
/site/gh-pages/content/references/commandline.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/references/commandline.md
--------------------------------------------------------------------------------
/site/gh-pages/content/references/dockerdrv.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/references/dockerdrv.md
--------------------------------------------------------------------------------
/site/gh-pages/content/references/fileformat.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/references/fileformat.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/_index.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/buildimage.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/buildimage.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/commandmode.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/commandmode.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/compose.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/compose.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/execmode.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/execmode.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/faq.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/faq.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/mapcreds.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/mapcreds.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/project.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/project.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/pushimage.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/pushimage.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/targetexec.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/targetexec.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/targetexp.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/targetexp.md
--------------------------------------------------------------------------------
/site/gh-pages/content/tutor/wrappermode.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/content/tutor/wrappermode.md
--------------------------------------------------------------------------------
/site/gh-pages/layouts/index.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/site/gh-pages/layouts/partials/favicon.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/layouts/partials/favicon.html
--------------------------------------------------------------------------------
/site/gh-pages/layouts/partials/logo.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/layouts/partials/logo.html
--------------------------------------------------------------------------------
/site/gh-pages/layouts/partials/menu-footer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/layouts/partials/menu-footer.html
--------------------------------------------------------------------------------
/site/gh-pages/layouts/partials/style.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/site/gh-pages/static/css/default.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/static/css/default.css
--------------------------------------------------------------------------------
/site/gh-pages/static/images/arm-hello.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/static/images/arm-hello.gif
--------------------------------------------------------------------------------
/site/gh-pages/static/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/static/images/favicon.png
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | public/
3 |
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/LICENSE.md
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/README.md
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/archetypes/chapter.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/archetypes/chapter.md
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/archetypes/default.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/archetypes/default.md
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/images/screenshot.png
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/images/tn.png
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/404.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/404.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/_default/list.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/_default/list.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/_default/single.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/_default/single.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/index.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/favicon.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/favicon.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/footer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/footer.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/header.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/header.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/logo.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/logo.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/menu-footer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/menu-footer.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/menu.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/menu.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/meta.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/meta.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/script.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/script.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/search.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/search.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/style.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/style.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/partials/toc.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/partials/toc.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/shortcodes/button.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/shortcodes/button.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/layouts/shortcodes/notice.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/layouts/shortcodes/notice.html
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/css/featherlight.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/css/featherlight.min.css
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/css/font-awesome.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/css/font-awesome.min.css
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/css/horsey.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/css/horsey.css
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/css/hugo-theme.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/css/hugo-theme.css
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/css/hybrid.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/css/hybrid.css
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/css/nucleus.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/css/nucleus.css
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/css/perfect-scrollbar.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/css/perfect-scrollbar.min.css
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/css/theme.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/css/theme.css
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Inconsolata.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Inconsolata.eot
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Inconsolata.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Inconsolata.svg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Inconsolata.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Inconsolata.ttf
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Inconsolata.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Inconsolata.woff
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.eot
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.svg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.ttf
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.woff
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.woff2
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.svg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.eot
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.svg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.ttf
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.woff
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_200.woff2
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.eot
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.svg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.ttf
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.woff
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_300.woff2
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.eot
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.svg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.ttf
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.woff
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/Work_Sans_500.woff2
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.svg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/images/clippy.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/images/clippy.svg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/images/favicon.png
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/images/gopher-404.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/images/gopher-404.jpg
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/clipboard.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/clipboard.min.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/featherlight.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/featherlight.min.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/highlight.pack.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/highlight.pack.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/horsey.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/horsey.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/html5shiv-printshiv.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/html5shiv-printshiv.min.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/hugo-learn.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/hugo-learn.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/jquery-2.x.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/jquery-2.x.min.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/jquery.sticky-kit.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/jquery.sticky-kit.min.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/learn.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/learn.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/lunr.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/lunr.min.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/modernizr.custom.71422.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/modernizr.custom.71422.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/perfect-scrollbar.jquery.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/perfect-scrollbar.jquery.min.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/perfect-scrollbar.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/perfect-scrollbar.min.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/js/search.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/static/js/search.js
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/static/json/search.json:
--------------------------------------------------------------------------------
1 | []
2 |
--------------------------------------------------------------------------------
/site/gh-pages/themes/hugo-theme-learn/theme.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/site/gh-pages/themes/hugo-theme-learn/theme.toml
--------------------------------------------------------------------------------
/test/doc.go:
--------------------------------------------------------------------------------
1 | package test
2 |
--------------------------------------------------------------------------------
/test/e2e/command-mode/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/command-mode/HyperMake
--------------------------------------------------------------------------------
/test/e2e/docker-abort/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-abort/HyperMake
--------------------------------------------------------------------------------
/test/e2e/docker-cmds-change/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-cmds-change/HyperMake
--------------------------------------------------------------------------------
/test/e2e/docker-cmds-change/HyperMake.changed:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-cmds-change/HyperMake.changed
--------------------------------------------------------------------------------
/test/e2e/docker-commit/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-commit/HyperMake
--------------------------------------------------------------------------------
/test/e2e/docker-compose/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-compose/HyperMake
--------------------------------------------------------------------------------
/test/e2e/docker-compose/dir/docker-compose.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-compose/dir/docker-compose.yml
--------------------------------------------------------------------------------
/test/e2e/docker-dir/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-dir/HyperMake
--------------------------------------------------------------------------------
/test/e2e/docker-dir/subdir/sub.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-dir/subdir/sub.hmake
--------------------------------------------------------------------------------
/test/e2e/docker-dir/subdir/vol/somefile:
--------------------------------------------------------------------------------
1 | somefile
2 |
--------------------------------------------------------------------------------
/test/e2e/docker-env/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-env/HyperMake
--------------------------------------------------------------------------------
/test/e2e/docker-user/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker-user/HyperMake
--------------------------------------------------------------------------------
/test/e2e/docker/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker/Dockerfile
--------------------------------------------------------------------------------
/test/e2e/docker/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/docker/HyperMake
--------------------------------------------------------------------------------
/test/e2e/e2e_test.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/e2e_test.go
--------------------------------------------------------------------------------
/test/e2e/suite.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/suite.go
--------------------------------------------------------------------------------
/test/e2e/wrapper-mode/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM alpine:3.4
2 | RUN apk add --update make
3 |
--------------------------------------------------------------------------------
/test/e2e/wrapper-mode/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/e2e/wrapper-mode/HyperMake
--------------------------------------------------------------------------------
/test/e2e/wrapper-mode/Makefile:
--------------------------------------------------------------------------------
1 | .PHONY: t1
2 |
3 | all:
4 | false
5 |
6 | t1:
7 | @echo Hello
8 |
--------------------------------------------------------------------------------
/test/fixtures/always-target/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/always-target/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/artifacts/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/artifacts/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/bad-project-name/HyperMake:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
4 | name: proj$1
5 |
--------------------------------------------------------------------------------
/test/fixtures/bad-target-name/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/bad-target-name/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/deps-rebuild/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/deps-rebuild/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/exec-order/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/exec-order/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/missing-project-name/HyperMake:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
--------------------------------------------------------------------------------
/test/fixtures/project-abort/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/project-abort/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/project-load/HyperMake:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
4 | name: load
5 |
--------------------------------------------------------------------------------
/test/fixtures/project0/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/project0/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/project0/subproject/subdir/HyperMake:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
4 | name: subdir
5 |
--------------------------------------------------------------------------------
/test/fixtures/project0/subproject/subdir/subdir2/somefile:
--------------------------------------------------------------------------------
1 | somefile
2 |
--------------------------------------------------------------------------------
/test/fixtures/project0/subproject/subproj.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/project0/subproject/subproj.hmake
--------------------------------------------------------------------------------
/test/fixtures/project1/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/project1/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/project2/.hmakerc:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
4 | settings:
5 | toplevel: value1
6 |
--------------------------------------------------------------------------------
/test/fixtures/project2/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/project2/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/project2/subdir/.hmakerc:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
4 | settings:
5 | toplevel: value2
6 |
--------------------------------------------------------------------------------
/test/fixtures/samples/bad-format.hmake:
--------------------------------------------------------------------------------
1 | ---
2 | format: unknown
3 | targets: {}
4 |
--------------------------------------------------------------------------------
/test/fixtures/samples/cyclic-deps.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/cyclic-deps.hmake
--------------------------------------------------------------------------------
/test/fixtures/samples/dep-undefined.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/dep-undefined.hmake
--------------------------------------------------------------------------------
/test/fixtures/samples/dup-target.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/dup-target.hmake
--------------------------------------------------------------------------------
/test/fixtures/samples/inc-a.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/inc-a.hmake
--------------------------------------------------------------------------------
/test/fixtures/samples/inc-nested.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/inc-nested.hmake
--------------------------------------------------------------------------------
/test/fixtures/samples/include-nonexist.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/include-nonexist.hmake
--------------------------------------------------------------------------------
/test/fixtures/samples/includes.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/includes.hmake
--------------------------------------------------------------------------------
/test/fixtures/samples/includes/inc1.hmake:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
4 | targets:
5 | inc1: {}
6 |
--------------------------------------------------------------------------------
/test/fixtures/samples/includes/inc2.hmake:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
4 | targets:
5 | inc2: {}
6 |
--------------------------------------------------------------------------------
/test/fixtures/samples/includes/subdir/deep.hmake:
--------------------------------------------------------------------------------
1 | ---
2 | format: hypermake.v0
3 |
4 | targets:
5 | deep: {}
6 |
--------------------------------------------------------------------------------
/test/fixtures/samples/invalid-yaml.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/invalid-yaml.hmake
--------------------------------------------------------------------------------
/test/fixtures/samples/missing-format.hmake:
--------------------------------------------------------------------------------
1 | ---
2 | targets: {}
3 |
--------------------------------------------------------------------------------
/test/fixtures/samples/target-names.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/samples/target-names.hmake
--------------------------------------------------------------------------------
/test/fixtures/skip-transit-targets/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/skip-transit-targets/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/target-expand/bad-name/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/target-expand/bad-name/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/target-expand/dup-target/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/target-expand/dup-target/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/target-expand/expand0/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/target-expand/expand0/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/target-expand/missing-bracket/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/target-expand/missing-bracket/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/task-change/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/task-change/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/task-change/HyperMake.changed:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/task-change/HyperMake.changed
--------------------------------------------------------------------------------
/test/fixtures/workdir/HyperMake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/workdir/HyperMake
--------------------------------------------------------------------------------
/test/fixtures/workdir/subdir/sub.hmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/fixtures/workdir/subdir/sub.hmake
--------------------------------------------------------------------------------
/test/fixtures/wrapper/explicit-interpreter/HyperMake:
--------------------------------------------------------------------------------
1 | #hmake-wrapper image
2 | #!/usr/bin/python
3 | print("hello")
4 |
--------------------------------------------------------------------------------
/test/fixtures/wrapper/implicit-interpreter/HyperMake:
--------------------------------------------------------------------------------
1 | #hmake-wrapper image
2 | echo Hello
3 |
--------------------------------------------------------------------------------
/test/fixtures/wrapper/no-content/HyperMake:
--------------------------------------------------------------------------------
1 | #hmake-wrapper image
2 |
--------------------------------------------------------------------------------
/test/fixtures/wrapper/with-build/HyperMake:
--------------------------------------------------------------------------------
1 | #hmake-wrapper image Dockerfile a=b c=d
2 |
--------------------------------------------------------------------------------
/test/hmake_test.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/hmake_test.go
--------------------------------------------------------------------------------
/test/suite.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evo-cloud/hmake/HEAD/test/suite.go
--------------------------------------------------------------------------------