{"id":37078278,"url":"https://github.com/andreas-schwenk/makemake","last_synced_at":"2026-01-14T09:04:51.393Z","repository":{"id":143508949,"uuid":"615971779","full_name":"andreas-schwenk/makemake","owner":"andreas-schwenk","description":"Simple Makefile generator for C projects, written in Python","archived":false,"fork":false,"pushed_at":"2023-03-19T10:34:58.000Z","size":21,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-28T12:28:12.327Z","etag":null,"topics":["makefile-generation","python3","python3-package"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/makemake/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andreas-schwenk.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2023-03-19T08:26:43.000Z","updated_at":"2025-01-04T22:42:06.000Z","dependencies_parsed_at":"2023-09-24T07:16:05.645Z","dependency_job_id":null,"html_url":"https://github.com/andreas-schwenk/makemake","commit_stats":{"total_commits":4,"total_committers":2,"mean_commits":2.0,"dds":0.25,"last_synced_commit":"6ff35526b1555210c2e5d0b012e56d6910099daf"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/andreas-schwenk/makemake","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreas-schwenk%2Fmakemake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreas-schwenk%2Fmakemake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreas-schwenk%2Fmakemake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreas-schwenk%2Fmakemake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andreas-schwenk","download_url":"https://codeload.github.com/andreas-schwenk/makemake/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreas-schwenk%2Fmakemake/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28414740,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T08:38:59.149Z","status":"ssl_error","status_checked_at":"2026-01-14T08:38:43.588Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["makefile-generation","python3","python3-package"],"created_at":"2026-01-14T09:04:50.704Z","updated_at":"2026-01-14T09:04:51.377Z","avatar_url":"https://github.com/andreas-schwenk.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# makemake\n\n`makemake` is a simple Makefile generator for C projects.\n\n## Example\n\nExample input file `Makefile.in`:\n\n```makefile\nPROG=prog      # the program name\nDIR=src/       # the source code directory\nSTD=c99        # the C standard\nBUILD=build/   # the output directory\n```\n\nAssume we have the following project files:\n\n```\nsrc/config.h\nsrc/lex.h\nsrc/lex.c\nsrc/main.c\n```\n\nThen the output `Makefile` is as follows:\n\n```makefile\n# Makefile generated by makemake - by Andreas Schwenk\nPROG=prog\nCC=gcc -std=c99\nBUILD_DIR=build/\nINC=\nLIB=\nCFLAGS=$(FLAGS)\nHEADERS=src/config.h src/lex.h\nOBJS=$(BUILD_DIR)lex.o $(BUILD_DIR)main.o\n\n$(shell mkdir -p $(BUILD_DIR))\n\nall: $(PROG)\nclean:\n\trm -rf $(BUILD_DIR)\n\n$(PROG): $(OBJS)\n\t$(CC) $(OBJS) $(INC) $(CFLAGS) $(LIB) -o $(BUILD_DIR)$(PROG)\n$(BUILD_DIR)lex.o: src/lex.c $(HEADERS)\n\t$(CC) src/lex.c $(INC) $(CFLAGS) -c -o $(BUILD_DIR)lex.o\n$(BUILD_DIR)main.o: src/main.c $(HEADERS)\n\t$(CC) src/main.c $(INC) $(CFLAGS) -c -o $(BUILD_DIR)main.o\n```\n\n## Usage\n\n### Installation\n\n```bash\npip install makemake\n```\n\n### Command Line\n\n```bash\nmakemake 'Makefile.in'\n```\n\n### API\n\n```python\nimport makemake\n\n# creates output 'Makefile' using meta data specified\n# in 'Makefile.in'\nmakemake.makemake('Makefile.in', 'Makefile')\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreas-schwenk%2Fmakemake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreas-schwenk%2Fmakemake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreas-schwenk%2Fmakemake/lists"}