diff options
| author | mryouse | 2023-05-24 22:56:13 +0000 |
|---|---|---|
| committer | mryouse | 2023-05-24 22:56:13 +0000 |
| commit | df34325463c28f11eb2ce46f83da0c29bafe1a5e (patch) | |
| tree | 410d1e27c924ed358c7ceaa23ae658aaaf3f766d | |
| parent | bf44744480707e7c9e3c36a379f41138b2041047 (diff) | |
add Makefile
| -rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d5ba265 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +DCOMP := dmd +BINARY := neb + +.PHONY: build +build: + ${DCOMP} *.d -of=${BINARY} |
