summaryrefslogtreecommitdiff
path: root/.makefile
Commit message (Collapse)AuthorAgeFilesLines
* Add workflow for creating release tarballsrelease/testTina Müller2020-06-221-0/+2
| | | | Also minor cleanup of .github/workflows/main.yml
* Move tests/run-test-suite to branch run-test-suiteIngy döt Net2017-12-291-1/+2
| | | | | | | | | | | | | | | | with the intent that `make test-suite` will use it as a branch. This commit makes the libyaml and yaml-test-suite repos completely independent. The only thing in master is a Makefile rule for `make run-test-suite`. The run-test-suite branch takes care of everything else. This will keep the master branch history clean from any yaml-test-suite activity, while keeping everything up to date. Pinning will just work for whatever commit of master you run the tests from. The pinning work will all be done in the `run-test-suite` branch.
* Add reminder when user is using GNUmakefileIngy döt Net2017-01-021-0/+5
|
* Add a `.makefile` for immediate make targetsIngy döt Net2017-01-021-0/+57
We can add various development activities to this alternate Makefile. If you do this first: ``` ln {.,GNU}makefile ``` then you can use the new targets and the old ones without specifying the `.makefile` in make commands and without worrying about bootstrap. ie Before this, to use Makefile targets, you needed to run `./bootstrap` and `./configure` first. This file will proxy all common Makefile targets, first making sure that the Makefile exists.