You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
572 B
28 lines
572 B
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \ |
|
config.sub configure depcomp install-sh ltmain.sh \ |
|
missing module.desktop |
|
|
|
SUBDIRS = src |
|
|
|
EDJE_FLAGS = -v \ |
|
-id $(top_srcdir)/images |
|
|
|
# data files for the module |
|
filesdir = $(datadir) |
|
|
|
files_DATA = module.desktop \ |
|
e-module-diskio.edj |
|
|
|
EXTRA_DIST = $(files_DATA) \ |
|
images/module_icon.png |
|
|
|
ACLOCAL_AMFLAGS = -I m4 |
|
|
|
%.edj: %.edc |
|
$(EDJE_CC) $(EDJE_FLAGS) $< $@ |
|
|
|
clean-local: |
|
rm -rf e-module-diskio.edj module.desktop *~ |
|
uninstall: |
|
rm -rf $(DESTDIR)$(datadir) |
|
|
|
|