Move things around

This commit is contained in:
Christine Dodrill 2015-06-11 18:34:56 -07:00
parent 66a3fd3275
commit 903735f91a
2 changed files with 5 additions and 5 deletions

View File

@ -9,8 +9,3 @@ GOFLAGS += -g
!nim = |> nim c $(NIMFLAGS) -o:%o %f && rm -rf .nimcache |>
!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

View File

@ -1,2 +1,7 @@
.gitignore
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