~enlightenment-git/enlightenment-svn/e-modules-extra

« back to all changes in this revision

Viewing changes to everything-wallpaper/Makefile.am

  • Committer: jeffdameth
  • Date: 2010-05-18 06:08:27 UTC
  • Revision ID: svn-v4:7cbeb6ba-43b4-40fd-8cce-4c39aea84d33:trunk/E-MODULES-EXTRA:48960
going to move wallpaper out of e modules. who wants to have it can get it here :)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ACLOCAL_AMFLAGS = -I m4
 
2
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
 
3
                       config.sub configure depcomp install-sh ltmain.sh \
 
4
                       missing module.desktop config.rpath mkinstalldirs
 
5
 
 
6
SUBDIRS = src po
 
7
 
 
8
EDJE_FLAGS = -v \
 
9
             -id $(top_srcdir)/images
 
10
 
 
11
filesdir = $(datadir)
 
12
files_DATA = module.desktop e-module.edj
 
13
 
 
14
EXTRA_DIST = module.desktop.in \
 
15
             e_modules.spec.in \
 
16
             e-module.edc \
 
17
             images/module_icon.png
 
18
 
 
19
%.edj:  %.edc
 
20
        $(EDJE_CC) $(EDJE_FLAGS) $< $@
 
21
 
 
22
clean-local:
 
23
         rm -rf e-module.edj module.desktop e_modules.spec *~
 
24
 
 
25
uninstall:
 
26
         rm -rf $(DESTDIR)$(datadir)
 
27