Creates a Makefile

Usage

create_makefile(..., .dots = NULL)

Arguments

...
Rules created by create_make_rule
.dots
A list rules in addition to ...

Description

A Makefile consists of a list of rules.

Examples

create_makefile(create_make_rule("all", c("first_target", "second_target")))
# Generated by MakefileR, do not edit by hand all: first_target second_target