{"id":43409651,"url":"https://github.com/matthewdeanmartin/makemake","last_synced_at":"2026-02-02T16:31:38.945Z","repository":{"id":317247543,"uuid":"1066607632","full_name":"matthewdeanmartin/makemake","owner":"matthewdeanmartin","description":"quality gates for Makefile","archived":false,"fork":false,"pushed_at":"2025-09-29T18:57:16.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-19T04:24:39.875Z","etag":null,"topics":["automation","build-tools","ci-cd","devops","makefile","programming","quality-gates"],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matthewdeanmartin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-29T18:05:44.000Z","updated_at":"2025-12-14T21:31:52.000Z","dependencies_parsed_at":"2025-09-29T20:37:53.038Z","dependency_job_id":null,"html_url":"https://github.com/matthewdeanmartin/makemake","commit_stats":null,"previous_names":["matthewdeanmartin/makemake"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/matthewdeanmartin/makemake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewdeanmartin%2Fmakemake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewdeanmartin%2Fmakemake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewdeanmartin%2Fmakemake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewdeanmartin%2Fmakemake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matthewdeanmartin","download_url":"https://codeload.github.com/matthewdeanmartin/makemake/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matthewdeanmartin%2Fmakemake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29015148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T16:17:30.374Z","status":"ssl_error","status_checked_at":"2026-02-02T15:58:50.469Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","build-tools","ci-cd","devops","makefile","programming","quality-gates"],"created_at":"2026-02-02T16:31:37.466Z","updated_at":"2026-02-02T16:31:38.940Z","avatar_url":"https://github.com/matthewdeanmartin.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# makemake\nQuality gates for Makefile\n\n## Hello World Python Package with Comprehensive Makefile Validation\n\nThis repository contains a complete hello_world Python package with a comprehensive Makefile that includes all the tools necessary to validate a Makefile.\n\n### Package Structure\n\n```\n.\n├── hello_world/          # Python package\n│   └── __init__.py      # Package with hello() function\n├── pyproject.toml       # Modern Python packaging configuration\n├── Makefile            # Comprehensive validation targets\n├── demo.py             # Demonstration script\n└── README.md           # This file\n```\n\n### Makefile Validation Tools\n\nThe Makefile includes targets for all these validation tools:\n\n- **almost-make**: Check Makefile compatibility with make alternatives\n- **make2help**: Generate help documentation from Makefile\n- **make-help**: Help system validation\n- **make-help-helper**: Help utilities\n- **makefile-checker**: Validate Makefile syntax and best practices\n- **shellcheck-makefile**: Check shell scripts in Makefile with shellcheck\n- **shellcheck-py**: Check Python scripts with shellcheck-py\n- **mbake**: Makefile build tool validation\n\n### Usage\n\n1. **Quick Demo**: Run the demonstration script\n   ```bash\n   python3 demo.py\n   ```\n\n2. **Install Package**: Install the hello_world package\n   ```bash\n   make install-core  # Install core tools (handles conflicts)\n   ```\n\n3. **Run All Validations**: Execute the complete validation pipeline\n   ```bash\n   make validate-makefile\n   ```\n\n4. **Get Help**: See all available targets\n   ```bash\n   make help\n   ```\n\n5. **Test Package**: Run basic package tests\n   ```bash\n   make test\n   ```\n\n### Key Features\n\n- **Graceful Fallbacks**: All validation tools have fallback behavior when not installed\n- **Dependency Management**: Resolves conflicts between make-help and mbake through optional dependencies\n- **Comprehensive Pipeline**: Single target (`validate-makefile`) runs all validation tools\n- **Development Workflow**: Includes clean, build, test, and format targets\n- **Self-Documenting**: Auto-generated help from target descriptions\n\n### Available Targets\n\n- `help` - Show help message\n- `all` - Install dependencies, validate Makefile, and run tests\n- `install` - Install package with all available tools\n- `install-core` - Install core validation tools (no conflicts)\n- `test` - Run basic package tests\n- `validate-makefile` - Run all Makefile validation tools\n- `clean` - Clean build artifacts\n- `build` - Build the package\n- `show-structure` - Display package structure\n\n### Individual Tool Targets\n\nEach validation tool has its own target for granular control:\n- `almost-make`, `make2help`, `make-help`, `make-help-helper`\n- `makefile-checker`, `shellcheck-makefile`, `shellcheck-py`, `mbake`\n\nThe Makefile demonstrates best practices for:\n- Tool availability checking\n- Graceful error handling\n- Comprehensive documentation\n- Modular validation pipeline\n- Cross-platform compatibility\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthewdeanmartin%2Fmakemake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatthewdeanmartin%2Fmakemake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthewdeanmartin%2Fmakemake/lists"}