13 lines
219 B
Makefile
13 lines
219 B
Makefile
SOURCES = d-.scm
|
|
GOBJECTS = $(SOURCES:%.scm=%.go)
|
|
GUILD = @GUILD@
|
|
|
|
moddir=$(GUILE_SITE)
|
|
godir=$(GUILE_SITE_CCACHE)
|
|
|
|
nobase_dist_mod_DATA = $(SOURCES)
|
|
nobase_go_DATA = $(GOBJECTS)
|
|
|
|
%.go: %.scm
|
|
$(GUILD) compile $^ -o $@
|