diff --git a/Makefile b/Makefile index 0ae0b4c..6f66140 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +4,11 @@ OBJ := listlogic.go mcron.go ports.go short.go .PHONY: all clean install uninstall all: $(OBJ) -%.go: %.scm +%.go: tk/%.scm GUILE_AUTO_COMPILE=0 guild compile $< -o $@ install: - mkdir -p $(TARGET)/tk - cp -f *.scm $(TARGET)/tk + cp -f tk $(TARGET) mkdir -p $(CCACHE)/tk cp -f *.go $(CCACHE)/tk diff --git a/listlogic.scm b/tk/listlogic.scm similarity index 100% rename from listlogic.scm rename to tk/listlogic.scm diff --git a/mcron.scm b/tk/mcron.scm similarity index 100% rename from mcron.scm rename to tk/mcron.scm diff --git a/ports.scm b/tk/ports.scm similarity index 100% rename from ports.scm rename to tk/ports.scm diff --git a/short.scm b/tk/short.scm similarity index 100% rename from short.scm rename to tk/short.scm