Move things around
This commit is contained in:
parent
66a3fd3275
commit
903735f91a
|
@ -9,8 +9,3 @@ GOFLAGS += -g
|
||||||
|
|
||||||
!nim = |> nim c $(NIMFLAGS) -o:%o %f && rm -rf .nimcache |>
|
!nim = |> nim c $(NIMFLAGS) -o:%o %f && rm -rf .nimcache |>
|
||||||
!gccgo = |> gccgo $(GOFLAGS) -o %o %f |>
|
!gccgo = |> gccgo $(GOFLAGS) -o %o %f |>
|
||||||
|
|
||||||
: foreach *.moon |> moonc -o ../bin/%B.lua %f && chmod u+x ../bin/%B.lua |> ../bin/%B.lua
|
|
||||||
: foreach *.nim |> !nim |> ../bin/%B
|
|
||||||
: foreach *.go |> !gccgo |> ../bin/%B
|
|
||||||
: foreach *.c |> gcc -o ../bin/%B %f |> ../bin/%B
|
|
||||||
|
|
|
@ -1,2 +1,7 @@
|
||||||
.gitignore
|
.gitignore
|
||||||
include_rules
|
include_rules
|
||||||
|
|
||||||
|
: foreach *.moon |> moonc -o ../bin/%B.lua %f && chmod u+x ../bin/%B.lua |> ../bin/%B.lua
|
||||||
|
: foreach *.nim |> !nim |> ../bin/%B
|
||||||
|
: foreach *.go |> !gccgo |> ../bin/%B
|
||||||
|
: foreach *.c |> gcc -o ../bin/%B %f |> ../bin/%B
|
||||||
|
|
Loading…
Reference in New Issue