{"id":24166092,"url":"https://github.com/jonathanvdc/flame-make-scripts","last_synced_at":"2026-02-18T11:32:11.783Z","repository":{"id":88519346,"uuid":"101491781","full_name":"jonathanvdc/flame-make-scripts","owner":"jonathanvdc","description":"Collection of GNU Make scripts that make depending on Flame tools easier.","archived":false,"fork":false,"pushed_at":"2017-09-01T16:39:19.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-18T23:30:14.918Z","etag":null,"topics":["flame","make","makefile","toolchain"],"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/jonathanvdc.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}},"created_at":"2017-08-26T14:42:17.000Z","updated_at":"2022-12-27T17:19:36.000Z","dependencies_parsed_at":"2023-07-22T22:00:41.063Z","dependency_job_id":null,"html_url":"https://github.com/jonathanvdc/flame-make-scripts","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jonathanvdc/flame-make-scripts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanvdc%2Fflame-make-scripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanvdc%2Fflame-make-scripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanvdc%2Fflame-make-scripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanvdc%2Fflame-make-scripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonathanvdc","download_url":"https://codeload.github.com/jonathanvdc/flame-make-scripts/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanvdc%2Fflame-make-scripts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29577863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"last_error":"SSL_read: 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":["flame","make","makefile","toolchain"],"created_at":"2025-01-12T20:14:29.266Z","updated_at":"2026-02-18T11:32:06.775Z","avatar_url":"https://github.com/jonathanvdc.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flame Makefile scripts\n\n[![Build Status](https://travis-ci.org/jonathanvdc/flame-make-scripts.svg?branch=master)](https://travis-ci.org/jonathanvdc/flame-make-scripts)\n\nThis repository contains a collection of GNU Make scripts that locate and/or install Flame-based projects. The goal of these scripts is to minimize the amount of hassle users experience when building your project: they either find an existing install of a tool or automatically build it from source. Running `make` should Just Work.\n\nYou can simply copy the scripts and put them in your own repository or\u0026mdash;better yet\u0026mdash;include this repository as a git submodule.\n\n## `ecsc`\n\n[`use-ecsc.mk`](use-ecsc.mk) tries to find the [`ecsc` Enhanced C# compiler](https://github.com/jonathanvdc/ecsc) and exposes it using the `ECSC` variable. If there's no global `ecsc` command, then `use-ecsc.mk` builds `ecsc` from source and makes `$(ECSC)` expand to a command that runs the local `ecsc` build.\n\nHere's an example Makefile that uses `use-ecsc.mk` to provide `ecsc`.\n\n```makefile\ninclude /path/to/use-ecsc.mk\n\nout.exe: code.cs | ecsc\n    $(ECSC) code.cs -platform clr -o out.exe\n```\n\nRead the comments at the top of `use-ecsc.mk` for a more complete description.\n\n## `flame-llvm`\n\n[`use-flame-llvm.mk`](use-flame-llvm.mk) tries to find the [`flame-llvm` Flame IR -\u003e LLVM IR compiler](https://github.com/jonathanvdc/flame-llvm) and exposes it using the `FLAME_LLVM` variable. If there's no global `flame-llvm` command, then `use-flame-llvm.mk` builds `flame-llvm` from source and makes `$(FLAME_LLVM)` expand to a command that runs the local `flame-llvm` build. Building from source only works if you're running a Debian-based distribution with LLVM 3.8 installed.\n\nHere's an example Makefile that uses both `use-ecsc.mk` and `use-flame-llvm.mk` to compile a C# file to a native executable.\n\n```makefile\ninclude /path/to/use-ecsc.mk\ninclude /path/to/use-flame-llvm.mk\n\na.out: code.cs | ecsc flame-llvm\n    $(ECSC) code.cs -platform ir -o obj.flo\n    $(FLAME_LLVM) obj.flo -platform llvm -o out.ll\n    clang out.ll -lgc -o a.out\n```\n\nRead the comments at the top of `use-flame-llvm.mk` for a more complete description.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanvdc%2Fflame-make-scripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonathanvdc%2Fflame-make-scripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanvdc%2Fflame-make-scripts/lists"}