mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-30 11:25:37 +00:00
13 lines
341 B
C
13 lines
341 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_BACKEND_NINJA_RULES_H
|
|
#define MUON_BACKEND_NINJA_RULES_H
|
|
#include "lang/workspace.h"
|
|
|
|
bool ninja_write_rules(FILE *out, struct workspace *wk, struct project *main_proj,
|
|
bool need_phony, obj compiler_rule_arr);
|
|
#endif
|