build: Fix build in build dir

This commit is contained in:
Jean-Philippe Andre 2017-10-18 19:49:06 +09:00
parent a09888c0b3
commit d1ca10bec6
1 changed files with 6 additions and 4 deletions

View File

@ -3,6 +3,8 @@ MAINTAINERCLEANFILES = Makefile.in
templatesdir = $(datadir)/$(PACKAGE)/templates
skeletonsdir = $(datadir)/$(PACKAGE)/templates/skeletons
templatessrcdir = $(top_srcdir)/data/extra/templates
templates_DATA = \
eflproject.edj \
eflproject_python.edj
@ -12,15 +14,15 @@ eflproject.tar.gz \
eflproject_python.tar.gz
eflproject.tar.gz:
tar zcvf eflproject.tar.gz -C skeletons eflproject
tar zcvf eflproject.tar.gz -C $(templatessrcdir)/skeletons eflproject
eflproject_python.tar.gz:
tar zcvf eflproject_python.tar.gz -C skeletons eflproject_python
tar zcvf eflproject_python.tar.gz -C $(templatessrcdir)/skeletons eflproject_python
eflproject.edj:
edje_cc -id images/ eflproject.edc
edje_cc -id $(templatessrcdir)/images/ $(templatessrcdir)/eflproject.edc
eflproject_python.edj:
edje_cc -id images/ eflproject_python.edc
edje_cc -id $(templatessrcdir)/images/ $(templatessrcdir)/eflproject_python.edc
EXTRA_DIST = $(templates_DATA) $(skeletons_DATA)