remove autotools

This commit is contained in:
Mike Blumenkrantz 2017-11-07 11:30:19 -05:00
parent 3ab6bf7eb5
commit bd88282047
118 changed files with 2 additions and 5505 deletions

41
.gitignore vendored
View File

@ -7,46 +7,5 @@
# command after changing this file, to see if there are
# any tracked files which get ignored after the change.
#
*.o
*.a
*.la
*.lo
Makefile
Makefile.in
.deps
.libs
*.gmo
*~
*.cfg
*.dirstamp
default.edj
/ABOUT-NLS
/aclocal.m4
/autom4te.cache/
/compile
/config.cache
/config.cache-env
/config.guess
/config.h
/config.h.in
/config.log
/config.rpath
/config.status
/config.sub
/configure
/depcomp
/enlightenment.pc
/enlightenment.spec
/install-sh
/libtool
/ltmain.sh
/missing
/mkinstalldirs
/stamp-h1
/data/units/enlightenment.service
*.eo.c
*.eo.h
Session.vim
#Ignore all autogenerated wayland protocol
*-protocol.[ch]
/build

370
INSTALL
View File

@ -1,370 +0,0 @@
Installation Instructions
*************************
Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
Inc.
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved. This file is offered as-is,
without warranty of any kind.
Basic Installation
==================
Briefly, the shell commands `./configure; make; make install' should
configure, build, and install this package. The following
more-detailed instructions are generic; see the `README' file for
instructions specific to this package. Some packages provide this
`INSTALL' file but do not implement all of the features documented
below. The lack of an optional feature in a given package is not
necessarily a bug. More recommendations for GNU packages can be found
in *note Makefile Conventions: (standards)Makefile Conventions.
The `configure' shell script attempts to guess correct values for
various system-dependent variables used during compilation. It uses
those values to create a `Makefile' in each directory of the package.
It may also create one or more `.h' files containing system-dependent
definitions. Finally, it creates a shell script `config.status' that
you can run in the future to recreate the current configuration, and a
file `config.log' containing compiler output (useful mainly for
debugging `configure').
It can also use an optional file (typically called `config.cache'
and enabled with `--cache-file=config.cache' or simply `-C') that saves
the results of its tests to speed up reconfiguring. Caching is
disabled by default to prevent problems with accidental use of stale
cache files.
If you need to do unusual things to compile the package, please try
to figure out how `configure' could check whether to do them, and mail
diffs or instructions to the address given in the `README' so they can
be considered for the next release. If you are using the cache, and at
some point `config.cache' contains results you don't want to keep, you
may remove or edit it.
The file `configure.ac' (or `configure.in') is used to create
`configure' by a program called `autoconf'. You need `configure.ac' if
you want to change it or regenerate `configure' using a newer version
of `autoconf'.
The simplest way to compile this package is:
1. `cd' to the directory containing the package's source code and type
`./configure' to configure the package for your system.
Running `configure' might take a while. While running, it prints
some messages telling which features it is checking for.
2. Type `make' to compile the package.
3. Optionally, type `make check' to run any self-tests that come with
the package, generally using the just-built uninstalled binaries.
4. Type `make install' to install the programs and any data files and
documentation. When installing into a prefix owned by root, it is
recommended that the package be configured and built as a regular
user, and only the `make install' phase executed with root
privileges.
5. Optionally, type `make installcheck' to repeat any self-tests, but
this time using the binaries in their final installed location.
This target does not install anything. Running this target as a
regular user, particularly if the prior `make install' required
root privileges, verifies that the installation completed
correctly.
6. You can remove the program binaries and object files from the
source code directory by typing `make clean'. To also remove the
files that `configure' created (so you can compile the package for
a different kind of computer), type `make distclean'. There is
also a `make maintainer-clean' target, but that is intended mainly
for the package's developers. If you use it, you may have to get
all sorts of other programs in order to regenerate files that came
with the distribution.
7. Often, you can also type `make uninstall' to remove the installed
files again. In practice, not all packages have tested that
uninstallation works correctly, even though it is required by the
GNU Coding Standards.
8. Some packages, particularly those that use Automake, provide `make
distcheck', which can by used by developers to test that all other
targets like `make install' and `make uninstall' work correctly.
This target is generally not run by end users.
Compilers and Options
=====================
Some systems require unusual options for compilation or linking that
the `configure' script does not know about. Run `./configure --help'
for details on some of the pertinent environment variables.
You can give `configure' initial values for configuration parameters
by setting variables in the command line or in the environment. Here
is an example:
./configure CC=c99 CFLAGS=-g LIBS=-lposix
*Note Defining Variables::, for more details.
Compiling For Multiple Architectures
====================================
You can compile the package for more than one kind of computer at the
same time, by placing the object files for each architecture in their
own directory. To do this, you can use GNU `make'. `cd' to the
directory where you want the object files and executables to go and run
the `configure' script. `configure' automatically checks for the
source code in the directory that `configure' is in and in `..'. This
is known as a "VPATH" build.
With a non-GNU `make', it is safer to compile the package for one
architecture at a time in the source code directory. After you have
installed the package for one architecture, use `make distclean' before
reconfiguring for another architecture.
On MacOS X 10.5 and later systems, you can create libraries and
executables that work on multiple system types--known as "fat" or
"universal" binaries--by specifying multiple `-arch' options to the
compiler but only a single `-arch' option to the preprocessor. Like
this:
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
CPP="gcc -E" CXXCPP="g++ -E"
This is not guaranteed to produce working output in all cases, you
may have to build one architecture at a time and combine the results
using the `lipo' tool if you have problems.
Installation Names
==================
By default, `make install' installs the package's commands under
`/usr/local/bin', include files under `/usr/local/include', etc. You
can specify an installation prefix other than `/usr/local' by giving
`configure' the option `--prefix=PREFIX', where PREFIX must be an
absolute file name.
You can specify separate installation prefixes for
architecture-specific files and architecture-independent files. If you
pass the option `--exec-prefix=PREFIX' to `configure', the package uses
PREFIX as the prefix for installing programs and libraries.
Documentation and other data files still use the regular prefix.
In addition, if you use an unusual directory layout you can give
options like `--bindir=DIR' to specify different values for particular
kinds of files. Run `configure --help' for a list of the directories
you can set and what kinds of files go in them. In general, the
default for these options is expressed in terms of `${prefix}', so that
specifying just `--prefix' will affect all of the other directory
specifications that were not explicitly provided.
The most portable way to affect installation locations is to pass the
correct locations to `configure'; however, many packages provide one or
both of the following shortcuts of passing variable assignments to the
`make install' command line to change installation locations without
having to reconfigure or recompile.
The first method involves providing an override variable for each
affected directory. For example, `make install
prefix=/alternate/directory' will choose an alternate location for all
directory configuration variables that were expressed in terms of
`${prefix}'. Any directories that were specified during `configure',
but not in terms of `${prefix}', must each be overridden at install
time for the entire installation to be relocated. The approach of
makefile variable overrides for each directory variable is required by
the GNU Coding Standards, and ideally causes no recompilation.
However, some platforms have known limitations with the semantics of
shared libraries that end up requiring recompilation when using this
method, particularly noticeable in packages that use GNU Libtool.
The second method involves providing the `DESTDIR' variable. For
example, `make install DESTDIR=/alternate/directory' will prepend
`/alternate/directory' before all installation names. The approach of
`DESTDIR' overrides is not required by the GNU Coding Standards, and
does not work on platforms that have drive letters. On the other hand,
it does better at avoiding recompilation issues, and works well even
when some directory options were not specified in terms of `${prefix}'
at `configure' time.
Optional Features
=================
If the package supports it, you can cause programs to be installed
with an extra prefix or suffix on their names by giving `configure' the
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
Some packages pay attention to `--enable-FEATURE' options to
`configure', where FEATURE indicates an optional part of the package.
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
is something like `gnu-as' or `x' (for the X Window System). The
`README' should mention any `--enable-' and `--with-' options that the
package recognizes.
For packages that use the X Window System, `configure' can usually
find the X include and library files automatically, but if it doesn't,
you can use the `configure' options `--x-includes=DIR' and
`--x-libraries=DIR' to specify their locations.
Some packages offer the ability to configure how verbose the
execution of `make' will be. For these packages, running `./configure
--enable-silent-rules' sets the default to minimal output, which can be
overridden with `make V=1'; while running `./configure
--disable-silent-rules' sets the default to verbose, which can be
overridden with `make V=0'.
Particular systems
==================
On HP-UX, the default C compiler is not ANSI C compatible. If GNU
CC is not installed, it is recommended to use the following options in
order to use an ANSI C compiler:
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
HP-UX `make' updates targets which have the same time stamps as
their prerequisites, which makes it generally unusable when shipped
generated files such as `configure' are involved. Use GNU `make'
instead.
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
parse its `<wchar.h>' header file. The option `-nodtk' can be used as
a workaround. If GNU CC is not installed, it is therefore recommended
to try
./configure CC="cc"
and if that doesn't work, try
./configure CC="cc -nodtk"
On Solaris, don't put `/usr/ucb' early in your `PATH'. This
directory contains several dysfunctional programs; working variants of
these programs are available in `/usr/bin'. So, if you need `/usr/ucb'
in your `PATH', put it _after_ `/usr/bin'.
On Haiku, software installed for all users goes in `/boot/common',
not `/usr/local'. It is recommended to use the following options:
./configure --prefix=/boot/common
Specifying the System Type
==========================
There may be some features `configure' cannot figure out
automatically, but needs to determine by the type of machine the package
will run on. Usually, assuming the package is built to be run on the
_same_ architectures, `configure' can figure that out, but if it prints
a message saying it cannot guess the machine type, give it the
`--build=TYPE' option. TYPE can either be a short name for the system
type, such as `sun4', or a canonical name which has the form:
CPU-COMPANY-SYSTEM
where SYSTEM can have one of these forms:
OS
KERNEL-OS
See the file `config.sub' for the possible values of each field. If
`config.sub' isn't included in this package, then this package doesn't
need to know the machine type.
If you are _building_ compiler tools for cross-compiling, you should
use the option `--target=TYPE' to select the type of system they will
produce code for.
If you want to _use_ a cross compiler, that generates code for a
platform different from the build platform, you should specify the
"host" platform (i.e., that on which the generated programs will
eventually be run) with `--host=TYPE'.
Sharing Defaults
================
If you want to set default values for `configure' scripts to share,
you can create a site shell script called `config.site' that gives
default values for variables like `CC', `cache_file', and `prefix'.
`configure' looks for `PREFIX/share/config.site' if it exists, then
`PREFIX/etc/config.site' if it exists. Or, you can set the
`CONFIG_SITE' environment variable to the location of the site script.
A warning: not all `configure' scripts look for a site script.
Defining Variables
==================
Variables not defined in a site shell script can be set in the
environment passed to `configure'. However, some packages may run
configure again during the build, and the customized values of these
variables may be lost. In order to avoid this problem, you should set
them in the `configure' command line, using `VAR=value'. For example:
./configure CC=/usr/local2/bin/gcc
causes the specified `gcc' to be used as the C compiler (unless it is
overridden in the site shell script).
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
an Autoconf bug. Until the bug is fixed you can use this workaround:
CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
`configure' Invocation
======================
`configure' recognizes the following options to control how it
operates.
`--help'
`-h'
Print a summary of all of the options to `configure', and exit.
`--help=short'
`--help=recursive'
Print a summary of the options unique to this package's
`configure', and exit. The `short' variant lists options used
only in the top level, while the `recursive' variant lists options
also present in any nested packages.
`--version'
`-V'
Print the version of Autoconf used to generate the `configure'
script, and exit.
`--cache-file=FILE'
Enable the cache: use and save the results of the tests in FILE,
traditionally `config.cache'. FILE defaults to `/dev/null' to
disable caching.
`--config-cache'
`-C'
Alias for `--cache-file=config.cache'.
`--quiet'
`--silent'
`-q'
Do not print messages saying which checks are being made. To
suppress all normal output, redirect it to `/dev/null' (any error
messages will still be shown).
`--srcdir=DIR'
Look for the package's source code in directory DIR. Usually
`configure' can determine that directory automatically.
`--prefix=DIR'
Use DIR as the installation prefix. *note Installation Names::
for more details, including other options available for fine-tuning
the installation locations.
`--no-create'
`-n'
Run the configure checks, but stop before creating any output
files.
`configure' also accepts some other, not widely useful, options. Run
`configure --help' for more details.

View File

@ -1,85 +0,0 @@
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
AUTOMAKE_OPTIONS = subdir-objects
SUBDIRS = .
if HAVE_PO
SUBDIRS += po
endif
CLEANFILES =
DISTCLEANFILES =
INSTALL_DATA_HOOKS =
PHONIES =
MAINTAINERCLEANFILES = \
ABOUT-NLS* \
Makefile.in \
aclocal.m4 \
compile \
config.guess \
config.h.in \
config.h.in~ \
config.rpath \
config.sub \
configure \
depcomp \
install-sh \
ltmain.sh \
missing \
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.bz2 \
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc.tar.bz2
EXTRA_DIST = \
config.rpath \
README \
AUTHORS \
COPYING \
enlightenment.pc
include m4/Makefile.mk
if HAVE_PO
include po/Makefile.mk
endif
DISTCHECK_CONFIGURE_FLAGS = --disable-systemd
include config/Makefile.mk
include data/Makefile.mk
include src/Makefile.mk
filesdir = $(datadir)/enlightenment/
files_DATA = AUTHORS COPYING
if HAVE_FREEBSD
pkgconfigdir = $(libdir)data/pkgconfig
else
pkgconfigdir = $(libdir)/pkgconfig
endif
pkgconfig_DATA = enlightenment.pc
include doc/Makefile.mk
include meson_dist.mk
EXTRA_DIST += $(meson_dist)
.PHONY: $(PHONIES)
clean-local: doc-clean
rm -rf config/*.cfg config/*~
rm -rf config/standard/*.cfg config/standard/*~
rm -rf config/tiling/*.cfg config/tiling/*~
rm -rf config/mobile/*.cfg config/mobile/*~
rm -rf config/default/*.cfg config/default/*~
rm -f data/themes/*.edj
install-data-hook: $(INSTALL_DATA_HOOKS)

6
README
View File

@ -21,11 +21,7 @@ MESON BUILD:
optional:
mesonconf --options OR meson configure --options
cd build && sudo ninja install
AUTOTOOLS BUILD:
./configure --prefix=/usr/local/e
sudo make install
sudo ninja -C build install
You will, as usual, need to add the subsequent bin dir to your $PATH etc.

View File

@ -41,21 +41,10 @@ existing applications.
Compiling:
-------------
Next, you will need to adjust the options that you pass to
Enlightenment during the compile phase.
In order for Enlightenment to be compiled as Wayland compositor you will need to
pass an option to the configure stage of Enlightenment:
--enable-wayland
If you also want support for running X applications under Wayland you might want
to try out XWayland support:
--enable-xwayland
NOTE: DO NOT DISABLE THE MIXER MODULE BUILD IF YOU ARE USING XWAYLAND.
You have been warned.
-Dwayland=true
At this stage, you should have EFL properly built, and Enlightenment
properly built. Let's move on to running it...
@ -90,9 +79,5 @@ Known Issues
- Requires upstream external protocol support, XWayland improvements
* XWayland clients do not smoothly resize
- Requires upstream XWayland improvements
* The first-launched X11 client will sometimes fail to show
- Requires upstream XWayland improvements
* There are not more than 4 keyboard layouts possible
- Requires libxkbcommon changes - https://github.com/xkbcommon/libxkbcommon/issues/37
* XWayland crashes on start
- Requires XWayland release - https://bugs.freedesktop.org/show_bug.cgi?id=95337

View File

@ -1,17 +0,0 @@
#!/bin/sh
test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.
(
cd "$srcdir" &&
(
rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh config.cache
autoreconf --symlink --install || exit 1
)
)
test -n "$NOCONFIGURE" || exec $srcdir/configure -C "$@"
exit 0

View File

@ -1,26 +0,0 @@
EET_EET = @eet_eet@
EXTRA_DIST += config/profile.src
configfilesdir = $(datadir)/enlightenment/data/config
configfiles_DATA = config/profile.cfg
SUFFIXES = .cfg
.src.cfg:
$(MKDIR_P) $(@D)
$(EET_EET) -e \
$(top_builddir)/$@ config \
$< 1
include config/default/Makefile.mk
include config/tiling/Makefile.mk
include config/standard/Makefile.mk
include config/mobile/Makefile.mk
config/profile.cfg: config/profile.src
$(MKDIR_P) $(@D)
$(EET_EET) -i \
$(top_builddir)/$@ config \
$< 1

View File

@ -1,12 +0,0 @@
EXTRA_DIST += \
config/default/profile.desktop \
config/default/enlightenment-default.png \
config/default/e.src \
config/default/e_bindings.src
configdefaultfilesdir = $(datadir)/enlightenment/data/config/default
configdefaultfiles_DATA = \
config/default/profile.desktop \
config/default/enlightenment-default.png \
config/default/e.cfg \
config/default/e_bindings.cfg

View File

@ -1,16 +0,0 @@
EXTRA_DIST += \
config/mobile/profile.desktop \
config/mobile/enlightenment-mobile.png \
config/mobile/e.src \
config/mobile/e_bindings.src \
config/mobile/module.battery.src \
config/mobile/module.conf.src
configmobilefilesdir = $(datadir)/enlightenment/data/config/mobile
configmobilefiles_DATA = \
config/mobile/profile.desktop \
config/mobile/enlightenment-mobile.png \
config/mobile/e.cfg \
config/mobile/e_bindings.cfg \
config/mobile/module.battery.cfg \
config/mobile/module.conf.cfg

View File

@ -1,28 +0,0 @@
EXTRA_DIST += \
config/standard/profile.desktop \
config/standard/enlightenment-standard.png \
config/standard/e.src \
config/standard/e_bindings.src \
config/standard/module.battery.src \
config/standard/module.cpufreq.src \
config/standard/module.fileman.src \
config/standard/module.ibar.src \
config/standard/module.ibox.src \
config/standard/module.pager.src \
config/standard/module.temperature.src \
config/standard/module.conf.src
configstandardfilesdir = $(datadir)/enlightenment/data/config/standard
configstandardfiles_DATA = \
config/standard/profile.desktop \
config/standard/enlightenment-standard.png \
config/standard/e.cfg \
config/standard/e_bindings.cfg \
config/standard/module.battery.cfg \
config/standard/module.cpufreq.cfg \
config/standard/module.fileman.cfg \
config/standard/module.ibar.cfg \
config/standard/module.ibox.cfg \
config/standard/module.pager.cfg \
config/standard/module.temperature.cfg \
config/standard/module.conf.cfg

View File

@ -1,30 +0,0 @@
EXTRA_DIST += \
config/tiling/profile.desktop \
config/tiling/enlightenment-tiling.png \
config/tiling/e.src \
config/tiling/e_bindings.src \
config/tiling/module.battery.src \
config/tiling/module.cpufreq.src \
config/tiling/module.fileman.src \
config/tiling/module.ibar.src \
config/tiling/module.ibox.src \
config/tiling/module.pager.src \
config/tiling/module.temperature.src \
config/tiling/module.tiling.src \
config/tiling/module.conf.src
configtilingfilesdir = $(datadir)/enlightenment/data/config/tiling
configtilingfiles_DATA = \
config/tiling/profile.desktop \
config/tiling/enlightenment-tiling.png \
config/tiling/e.cfg \
config/tiling/e_bindings.cfg \
config/tiling/module.battery.cfg \
config/tiling/module.cpufreq.cfg \
config/tiling/module.fileman.cfg \
config/tiling/module.ibar.cfg \
config/tiling/module.ibox.cfg \
config/tiling/module.pager.cfg \
config/tiling/module.temperature.cfg \
config/tiling/module.tiling.cfg \
config/tiling/module.conf.cfg

File diff suppressed because it is too large Load Diff

2
data/.gitignore vendored
View File

@ -1,2 +0,0 @@
/etc/sysactions.conf
/xsession/enlightenment.desktop

View File

@ -1,11 +0,0 @@
include data/images/Makefile.mk
include data/tools/Makefile.mk
include data/session/Makefile.mk
include data/input_methods/Makefile.mk
include data/etc/Makefile.mk
include data/icons/Makefile.mk
include data/backgrounds/Makefile.mk
include data/flags/Makefile.mk
include data/favorites/Makefile.mk
include data/desktop/Makefile.mk
include data/units/Makefile.mk

View File

@ -1,41 +0,0 @@
backgroundfilesdir = $(datadir)/enlightenment/data/backgrounds
backgroundfiles_DATA = \
data/backgrounds/Brown_Rock_Hi.edj \
data/backgrounds/Colorful_Roses.edj \
data/backgrounds/Darkconcrete.edj \
data/backgrounds/Dark_Gradient.edj \
data/backgrounds/Grassy.edj \
data/backgrounds/Japanesemaple.edj \
data/backgrounds/Lakegrass.edj \
data/backgrounds/Light_Gradient.edj \
data/backgrounds/Mossstring.edj \
data/backgrounds/Motleyrock.edj \
data/backgrounds/Newgrowth.edj \
data/backgrounds/Orange_Roses.edj \
data/backgrounds/Pattern_Radial.edj \
data/backgrounds/Pattern_Vertical.edj \
data/backgrounds/Pattern_Vertical_Hi.edj \
data/backgrounds/Pine_Silhouettes.edj \
data/backgrounds/Purple_Flower_Bunch.edj \
data/backgrounds/Skywall.edj \
data/backgrounds/Stringflower.edj \
data/backgrounds/Wetgrass.edj \
data/backgrounds/Wetleaf.edj \
data/backgrounds/Whiterock.edj \
data/backgrounds/Hills.edj \
data/backgrounds/Light.edj \
data/backgrounds/Temple.edj \
data/backgrounds/Train.edj \
data/backgrounds/Curly_Leaves.edj \
data/backgrounds/Flower_Petals.edj \
data/backgrounds/Go_Away.edj \
data/backgrounds/Green_Stem.edj \
data/backgrounds/Leafy_Red.edj \
data/backgrounds/Ramen.edj \
data/backgrounds/Shady_Leaves.edj \
data/backgrounds/Windy_Palm.edj \
data/backgrounds/Lantern_Cluster.edj \
data/backgrounds/Wall_Lanterns.edj
EXTRA_DIST += $(backgroundfiles_DATA)

View File

@ -1,6 +0,0 @@
desktopfilesdir = $(datadir)/applications
desktopfiles_DATA = \
data/desktop/enlightenment_filemanager.desktop \
data/desktop/enlightenment_askpass.desktop
EXTRA_DIST += $(desktopfiles_DATA)

View File

@ -1,15 +0,0 @@
etcfilesdir = $(sysconfdir)/enlightenment
etcfiles_DATA =
if INSTALL_SYSACTIONS
etcfiles_DATA += data/etc/sysactions.conf
endif
etcmenusdir = $(sysconfdir)/xdg/menus
etcmenus_DATA =
if INSTALL_ENLIGHTENMENT_MENU
etcmenus_DATA += data/etc/e-applications.menu
endif
EXTRA_DIST += $(etcfiles_DATA) $(etcmenus_DATA)

View File

@ -1,9 +0,0 @@
datafavsdir = $(datadir)/enlightenment/data/favorites
datafavs_DATA = \
data/favorites/.order \
data/favorites/desktop.desktop \
data/favorites/home.desktop \
data/favorites/root.desktop \
data/favorites/tmp.desktop
EXTRA_DIST += $(datafavs_DATA)

View File

@ -1,103 +0,0 @@
dataflagsfilesdir = $(datadir)/enlightenment/data/flags
dataflagsfiles_DATA = \
data/flags/ad_flag.png \
data/flags/af_flag.png \
data/flags/al_flag.png \
data/flags/am_flag.png \
data/flags/ara_flag.png \
data/flags/ar_flag.png \
data/flags/at_flag.png \
data/flags/az_flag.png \
data/flags/ba_flag.png \
data/flags/bd_flag.png \
data/flags/be_flag.png \
data/flags/bg_flag.png \
data/flags/brai_flag.png \
data/flags/br_flag.png \
data/flags/bt_flag.png \
data/flags/bw_flag.png \
data/flags/by_flag.png \
data/flags/ca_flag.png \
data/flags/cat_flag.png \
data/flags/cd_flag.png \
data/flags/ch_flag.png \
data/flags/cm_flag.png \
data/flags/cn_flag.png \
data/flags/cz_flag.png \
data/flags/de_flag.png \
data/flags/dk_flag.png \
data/flags/ee_flag.png \
data/flags/epo_flag.png \
data/flags/es_flag.png \
data/flags/et_flag.png \
data/flags/fi_flag.png \
data/flags/fo_flag.png \
data/flags/fr_flag.png \
data/flags/gb_flag.png \
data/flags/ge_flag.png \
data/flags/gh_flag.png \
data/flags/gn_flag.png \
data/flags/gr_flag.png \
data/flags/hr_flag.png \
data/flags/hu_flag.png \
data/flags/ie_flag.png \
data/flags/il_flag.png \
data/flags/in_flag.png \
data/flags/iq_flag.png \
data/flags/ir_flag.png \
data/flags/is_flag.png \
data/flags/it_flag.png \
data/flags/jp_flag.png \
data/flags/ke_flag.png \
data/flags/kg_flag.png \
data/flags/kh_flag.png \
data/flags/kr_flag.png \
data/flags/ku_flag.png \
data/flags/kz_flag.png \
data/flags/la_flag.png \
data/flags/lang-system.png \
data/flags/latam_flag.png \
data/flags/lk_flag.png \
data/flags/lt_flag.png \
data/flags/lv_flag.png \
data/flags/ma_flag.png \
data/flags/mao_flag.png \
data/flags/md_flag.png \
data/flags/me_flag.png \
data/flags/mk_flag.png \
data/flags/ml_flag.png \
data/flags/mm_flag.png \
data/flags/mn_flag.png \
data/flags/mt_flag.png \
data/flags/mv_flag.png \
data/flags/my_flag.png \
data/flags/ng_flag.png \
data/flags/nl_flag.png \
data/flags/no_flag.png \
data/flags/np_flag.png \
data/flags/ph_flag.png \
data/flags/pk_flag.png \
data/flags/pl_flag.png \
data/flags/pt_flag.png \
data/flags/ro_flag.png \
data/flags/rs_flag.png \
data/flags/ru_flag.png \
data/flags/se_flag.png \
data/flags/si_flag.png \
data/flags/sk_flag.png \
data/flags/sn_flag.png \
data/flags/sy_flag.png \
data/flags/th_flag.png \
data/flags/tj_flag.png \
data/flags/tm_flag.png \
data/flags/tr_flag.png \
data/flags/tw_flag.png \
data/flags/tz_flag.png \
data/flags/ua_flag.png \
data/flags/unknown_flag.png \
data/flags/us_flag.png \
data/flags/uz_flag.png \
data/flags/vn_flag.png \
data/flags/za_flag.png
EXTRA_DIST += $(dataflagsfiles_DATA)

View File

@ -1,18 +0,0 @@
iconsfilesdir = $(datadir)/enlightenment/data/icons
iconsfiles_DATA = \
data/icons/xterm.png \
data/icons/web_browser.png \
data/icons/audio_player.png \
data/icons/mail_client.png \
data/icons/video_player.png \
data/icons/text_editor.png \
data/icons/image_viewer.png \
data/icons/audio_player2.png
EXTRA_DIST += $(iconsfiles_DATA)
pixmapsdir = $(datadir)/pixmaps
pixmaps_DATA = \
data/icons/enlightenment-askpass.png
EXTRA_DIST += $(pixmaps_DATA)

View File

@ -1,9 +0,0 @@
imagesfilesdir = $(datadir)/enlightenment/data/images
imagesfiles_DATA = \
data/images/enlightenment.png \
data/images/test.png \
data/images/test.jpg \
data/images/test.edj \
data/images/test.svg
EXTRA_DIST += $(imagesfiles_DATA)

View File

@ -1,11 +0,0 @@
imcfilesdir = $(datadir)/enlightenment/data/input_methods
imcfiles_DATA = \
data/input_methods/scim.imc \
data/input_methods/uim.imc \
data/input_methods/iiimf.imc \
data/input_methods/ibus.imc \
data/input_methods/gcin.imc \
data/input_methods/hime.imc \
data/input_methods/fcitx.imc
EXTRA_DIST += $(imcfiles_DATA)

View File

@ -1,11 +0,0 @@
if ! HAVE_WAYLAND_ONLY
xsessionfilesdir = $(datadir)/xsessions
xsessionfiles_DATA = data/session/enlightenment.desktop
endif
if HAVE_WAYLAND
wlsessionfilesdir = $(datadir)/wayland-sessions
wlsessionfiles_DATA = data/session/enlightenment.desktop
endif
EXTRA_DIST += data/session/enlightenment.desktop.in

View File

@ -1,6 +0,0 @@
enlightenment_remotedir = $(bindir)
enlightenment_remote_SCRIPTS = data/tools/enlightenment_remote
EXTRA_DIST += data/tools/enlightenment_remote

View File

@ -1,6 +0,0 @@
if HAVE_SYSTEMD_USER_SESSION
unitsdir = $(USER_SESSION_DIR)
units_DATA = data/units/enlightenment.service
endif
EXTRA_DIST += $(units_DATA)

2
doc/.gitignore vendored
View File

@ -1,2 +0,0 @@
/e.dox
/Doxyfile

View File

@ -1,47 +0,0 @@
MAINTAINERCLEANFILES += doc/e.dox
PHONIES += doc doc-clean
PACKAGE_DOCNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-doc
if EFL_BUILD_DOC
doc-clean:
rm -rf doc/html/ doc/latex/ doc/man/ doc/xml/ $(top_builddir)/$(PACKAGE_DOCNAME).tar*
doc: all doc-clean
@echo "entering doc/"
$(efl_doxygen) doc/Doxyfile
cp $(top_srcdir)/doc/img/* doc/html/
rm -rf $(PACKAGE_DOCNAME).tar*
$(MKDIR_P) $(PACKAGE_DOCNAME)/doc
cp -R doc/html/ doc/latex/ doc/man/ $(PACKAGE_DOCNAME)/doc
tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/
bzip2 -9 $(PACKAGE_DOCNAME).tar
rm -rf $(PACKAGE_DOCNAME)/
@echo "Documentation Package: $(top_builddir)/$(PACKAGE_DOCNAME).tar.bz2"
else
doc:
@echo "Documentation not built. Run ./configure --help"
endif
docfilesdir = $(datadir)/enlightenment/doc
docfiles_DATA = \
doc/documentation.html \
doc/illume2.html \
doc/FDO.txt \
doc/cache.txt \
doc/enlightenment.png \
doc/illume2.png
EXTRA_DIST += \
$(docfiles_DATA) \
doc/Doxyfile.in \
$(wildcard doc/img/*.*) \
doc/e.css \
doc/head.html \
doc/foot.html \
doc/e.dox.in

View File

@ -1,21 +0,0 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
datarootdir=@datarootdir@
datadir=@datadir@
includedir=@includedir@/@PACKAGE@
modules=@libdir@/@PACKAGE@/modules
pkgdatadir=@datadir@/@PACKAGE@/data
themes=${pkgdatadir}/themes
backgrounds=${pkgdatadir}/backgrounds
config_apps=@datadir@/@PACKAGE@/config-apps
release=@release@
wayland=@WAYLAND@
Name: enlightenment
Description: Enlightenment Window Manager
Requires: @requirements_e@
Version: @VERSION@
Libs: -L${libdir}
Libs.private: -lm
Cflags: -I${includedir}

39
m4/.gitignore vendored
View File

@ -1,39 +0,0 @@
/codeset.m4
/fcntl-o.m4
/gettext.m4
/glibc21.m4
/iconv.m4
/intdiv0.m4
/inttypes-pri.m4
/inttypes.m4
/inttypes_h.m4
/isc-posix.m4
/lcmessage.m4
/lib-ld.m4
/lib-link.m4
/lib-prefix.m4
/libtool.m4
/ltoptions.m4
/ltsugar.m4
/ltversion.m4
/lt~obsolete.m4
/nls.m4
/po.m4
/progtest.m4
/stdint_h.m4
/uintmax_t.m4
/ulonglong.m4
/glibc2.m4
/intl.m4
/intldir.m4
/intlmacosx.m4
/intmax.m4
/lock.m4
/longlong.m4
/printf-posix.m4
/size_max.m4
/threadlib.m4
/visibility.m4
/wchar_t.m4
/wint_t.m4
/xsize.m4

View File

@ -1,26 +0,0 @@
MAINTAINERCLEANFILES += \
m4/libtool.m4 \
m4/lt~obsolete.m4 \
m4/ltoptions.m4 \
m4/ltsugar.m4 \
m4/ltversion.m4 \
m4/codeset.m4 \
m4/gettext.m4 \
m4/glibc21.m4 \
m4/iconv.m4 \
m4/intdiv0.m4 \
m4/inttypes_h.m4 \
m4/inttypes.m4 \
m4/inttypes-pri.m4 \
m4/isc-posix.m4 \
m4/lcmessage.m4 \
m4/lib-ld.m4 \
m4/lib-link.m4 \
m4/lib-prefix.m4 \
m4/nls.m4 \
m4/po.m4 \
m4/progtest.m4 \
m4/stdint_h.m4 \
m4/uintmax_t.m4 \
m4/ulonglong.m4

View File

@ -1,165 +0,0 @@
dnl _XTERM_COLORS
define([_XTERM_COLORS],
[
# Check for XTerm and define some colors
if test "x$TERM" = "xxterm" -o "x$TERM" = "xscreen"; then
COLOR_PREF=`echo -e "\0033\0133"`
COLOR_H="${COLOR_PREF}1m"
COLOR_HGREEN="${COLOR_PREF}1;32m"
COLOR_HRED="${COLOR_PREF}1;31m"
COLOR_GREEN="${COLOR_PREF}32m"
COLOR_RED="${COLOR_PREF}31m"
COLOR_YELLOW="${COLOR_PREF}1;33m"
COLOR_END="${COLOR_PREF}0m"
else
COLOR_H=""
COLOR_HGREEN=""
COLOR_HRED=""
COLOR_GREEN=""
COLOR_RED=""
COLOR_YELLOW=""
COLOR_END=""
fi
])
dnl AC_E_CHECK_PKG(name, lib [>= version], [action-if, [action-not]])
dnl improved version of PKG_CHECK_MODULES, it does the same checking
dnl and defines HAVE_[name]=yes/no and also exports
dnl [name]_CFLAGS and [name]_LIBS.
dnl
dnl if action-not isn't provided, AC_MSG_ERROR will be used.
dnl
dnl Checks:
dnl lib >= version
dnl
dnl Provides:
dnl - HAVE_[name]=yes|no
dnl - [name]_CFLAGS: if HAVE_[name]=yes
dnl - [name]_LIBS: if HAVE_[name]=yes
dnl - [name]_VERSION: if HAVE_[name]=yes
dnl
AC_DEFUN([AC_E_CHECK_PKG],
[
# ----------------------------------------------------------------------
# BEGIN: Check library with pkg-config: $1 (pkg-config=$2)
#
PKG_CHECK_MODULES([$1], [$2],
[
HAVE_[$1]=yes
[pkg_name]=$(echo "[$2]" | cut -d\ -f1)
[$1]_VERSION=$($PKG_CONFIG --modversion $pkg_name)
AC_SUBST([$1]_VERSION)
ifelse([$3], , :, [$3])
],
[
HAVE_[$1]=no
ifelse([$4], , AC_MSG_ERROR(you need [$2] development installed!), AC_MSG_RESULT(no); [$4])
])
AM_CONDITIONAL(HAVE_[$1], test x$HAVE_[$1] = xyes)
AC_SUBST(HAVE_[$1])
if test x$HAVE_[$1] = xyes; then
AC_DEFINE_UNQUOTED(HAVE_[$1], 1, Package [$1] ($2) found.)
fi
#
# END: Check library with pkg-config: $1 (pkg-config=$2)
# ----------------------------------------------------------------------
])
dnl AC_E_OPTIONAL_MODULE(name, [initial-status, [check-if-enabled]])
dnl Defines configure argument --<enable|disable>-[name] to enable an
dnl optional module called 'name'.
dnl
dnl If initial-status is true, then it's enabled by default and option
dnl will be called --disable-[name], otherwise it's disabled and option
dnl is --enable-[name].
dnl
dnl If module is enabled, then check-if-enabled will be executed. This
dnl may change the contents of shell variable NAME (uppercase version of
dnl name, with underscores instead of dashed) to something different than
dnl "true" to disable module.
dnl
dnl Parameters:
dnl - name: module name to use. It will be converted to have dashes (-)
dnl instead of underscores, and will be in lowercase.
dnl - initial-status: true or false, states if module is enabled or
dnl disabled by default.
dnl - check-if-enabled: macro to be expanded inside check for enabled
dnl module.
dnl
dnl Provides:
dnl - USE_MODULE_[name]=true|false [make, shell]
dnl - USE_MODULE_[name]=1 if enabled [config.h]
dnl
AC_DEFUN([AC_E_OPTIONAL_MODULE],
[
# ----------------------------------------------------------------------
# BEGIN: Check for optional module: $1 (default: $2)
#
m4_pushdef([MODNAME], [m4_bpatsubst(m4_toupper([$1]), -, _)])dnl
m4_pushdef([modname_opt], [m4_bpatsubst(m4_tolower([$1]), _, -)])
m4_pushdef([INITVAL], [m4_default([$2], [false])])dnl
m4_pushdef([ENABLE_HELP], AS_HELP_STRING([--enable-modname_opt],
[optional module modname_opt @<:@default=disabled@:>@]))dnl
m4_pushdef([DISABLE_HELP], AS_HELP_STRING([--disable-modname_opt],
[optional module modname_opt @<:@default=enabled@:>@]))dnl
m4_pushdef([HELP_STR], m4_if(INITVAL, [true], [DISABLE_HELP], [ENABLE_HELP]))dnl
m4_pushdef([NOT_INITVAL], m4_if(INITVAL, [true], [false], [true]))dnl
USING_MODULES=1
MODNAME=INITVAL
AC_ARG_ENABLE(modname_opt, HELP_STR, [MODNAME=${enableval:-NOT_INITVAL}])
if test x[$]MODNAME = xyes || test x[$]MODNAME = x1; then
MODNAME=true
fi
if test x[$]MODNAME = xno || test x[$]MODNAME = x0; then
MODNAME=false
fi
USE_MODULE_[]MODNAME=[$]MODNAME
_XTERM_COLORS
# Check list for optional module $1
if test x[$]MODNAME = xtrue; then
ifelse([$3], , , [
echo
echo "checking optional module modname_opt:"
# BEGIN: User checks
$3
# END: User checks
if test x[$]MODNAME = xfalse; then
echo -e "optional module modname_opt ${COLOR_HRED}failed${COLOR_END} checks."
else
echo -e "optional module modname_opt passed checks."
fi
echo
])
if test x[$]MODNAME = xfalse; then
echo -e "${COLOR_YELLOW}Warning:${COLOR_END} optional module ${COLOR_H}modname_opt${COLOR_END} disabled by extra checks."
fi
fi
# Check if user checks succeeded
if test x[$]MODNAME = xtrue; then
[OPTIONAL_MODULES]="$[OPTIONAL_MODULES] modname_opt"
AC_DEFINE_UNQUOTED(USE_MODULE_[]MODNAME, 1, Use module modname_opt)
else
[UNUSED_OPTIONAL_MODULES]="$[UNUSED_OPTIONAL_MODULES] modname_opt"
fi
AM_CONDITIONAL(USE_MODULE_[]MODNAME, test x[$]MODNAME = xtrue)
AC_SUBST(USE_MODULE_[]MODNAME)
m4_popdef([HELP_STR])dnl
m4_popdef([DISABLE_HELP])dnl
m4_popdef([ENABLE_HELP])dnl
m4_popdef([INITVAL])dnl
m4_popdef([MODNAME])
#
# END: Check for optional module: $1 ($2)
# ----------------------------------------------------------------------
])

View File

@ -1,79 +0,0 @@
dnl Copyright (C) 2010 Vincent Torri <vtorri at univ-evry dot fr>
dnl That code is public domain and can be freely used or copied.
dnl Macro that check if a binary is built or not
dnl Usage: EFL_ENABLE_BIN(binary)
dnl Call AC_SUBST(BINARY_PRG) (BINARY is the uppercase of binary, - being transformed into _)
dnl Define have_binary (- is transformed into _)
dnl Define conditional BUILD_BINARY (BINARY is the uppercase of binary, - being transformed into _)
AC_DEFUN([EFL_ENABLE_BIN],
[
m4_pushdef([UP], m4_translit([[$1]], [-a-z], [_A-Z]))dnl
m4_pushdef([DOWN], m4_translit([[$1]], [-A-Z], [_a-z]))dnl
have_[]m4_defn([DOWN])="yes"
dnl configure option
AC_ARG_ENABLE([$1],
[AC_HELP_STRING([--disable-$1], [disable building of ]DOWN)],
[
if test "x${enableval}" = "xyes" ; then
have_[]m4_defn([DOWN])="yes"
else
have_[]m4_defn([DOWN])="no"
fi
])
AC_MSG_CHECKING([whether to build ]DOWN[ binary])
AC_MSG_RESULT([$have_[]m4_defn([DOWN])])
if test "x$have_[]m4_defn([DOWN])" = "xyes"; then
UP[]_PRG=DOWN[${EXEEXT}]
fi
AC_SUBST(UP[]_PRG)
AM_CONDITIONAL(BUILD_[]UP, test "x$have_[]m4_defn([DOWN])" = "xyes")
AS_IF([test "x$have_[]m4_defn([DOWN])" = "xyes"], [$2], [$3])
])
dnl Macro that check if a binary is built or not
dnl Usage: EFL_WITH_BIN(package, binary, default_value)
dnl Call AC_SUBST(_binary) (_binary is the lowercase of binary, - being transformed into _ by default, or the value set by the user)
AC_DEFUN([EFL_WITH_BIN],
[
m4_pushdef([DOWN], m4_translit([[$2]], [-A-Z], [_a-z]))dnl
m4_pushdef([UP], m4_translit([[$2]], [-a-z], [_A-Z]))dnl
dnl configure option
AC_ARG_WITH([$2],
[AC_HELP_STRING([--with-$2=PATH], [specify a specific path to ]DOWN[ @<:@default=$3@:>@])],
[
_efl_with_binary=${withval}
_efl_binary_define="yes"
],
[
_efl_with_binary=$(pkg-config --variable=prefix $1)/bin/$3
_efl_binary_define="no"
])
DOWN=${_efl_with_binary}
AC_MSG_NOTICE(DOWN[ set to ${_efl_with_binary}])
with_binary_[]m4_defn([DOWN])=${_efl_with_binary}
AM_CONDITIONAL(HAVE_[]UP, [test "x${_efl_binary_define}" = "xyes"])
AC_SUBST(DOWN)
])

View File

@ -1,57 +0,0 @@
dnl Copyright (C) 2010 Vincent Torri <vtorri at univ-evry dot fr>
dnl and Albin Tonnerre <albin dot tonnerre at gmail dot com>
dnl That code is public domain and can be freely used or copied.
dnl Macro that checks if a compiler flag is supported by the compiler.
dnl Usage: EFL_COMPILER_FLAG(flag)
dnl flag is added to CFLAGS if supported.
AC_DEFUN([EFL_COMPILER_FLAG],
[
CFLAGS_save="${CFLAGS}"
CFLAGS="${CFLAGS} $1"
AC_LANG_PUSH([C])
AC_MSG_CHECKING([whether the compiler supports $1])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([[]])],
[have_flag="yes"],
[have_flag="no"])
AC_MSG_RESULT([${have_flag}])
if test "x${have_flag}" = "xno" ; then
CFLAGS="${CFLAGS_save}"
fi
AC_LANG_POP([C])
])
dnl Macro that checks if a linker flag is supported by the compiler.
dnl Usage: EFL_LINKER_FLAG(flag)
dnl flag is added to LDFLAGS if supported (will be passed to ld anyway).
AC_DEFUN([EFL_LINKER_FLAG],
[
LDFLAGS_save="${LDFLAGS}"
LDFLAGS="${LDFLAGS} $1"
AC_LANG_PUSH([C])
AC_MSG_CHECKING([whether the compiler supports $1])
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[]])],
[have_flag="yes"],
[have_flag="no"])
AC_MSG_RESULT([${have_flag}])
if test "x${have_flag}" = "xno" ; then
LDFLAGS="${LDFLAGS_save}"
fi
AC_LANG_POP([C])
])

View File

@ -1,97 +0,0 @@
dnl Copyright (C) 2008 Vincent Torri <vtorri at univ-evry dot fr>
dnl That code is public domain and can be freely used or copied.
dnl Macro that check if doxygen is available or not.
dnl EFL_CHECK_DOXYGEN([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
dnl Test for the doxygen program
dnl Defines efl_doxygen
dnl Defines the automake conditionnal EFL_BUILD_DOC
dnl
AC_DEFUN([EFL_CHECK_DOXYGEN],
[
dnl
dnl Disable the build of the documentation
dnl
AC_ARG_ENABLE([doc],
[AC_HELP_STRING(
[--disable-doc],
[Disable documentation build @<:@default=enabled@:>@])],
[
if test "x${enableval}" = "xyes" ; then
efl_enable_doc="yes"
else
efl_enable_doc="no"
fi
],
[efl_enable_doc="yes"])
AC_MSG_CHECKING([whether to build documentation])
AC_MSG_RESULT([${efl_enable_doc}])
if test "x${efl_enable_doc}" = "xyes" ; then
dnl Specify the file name, without path
efl_doxygen="doxygen"
AC_ARG_WITH([doxygen],
[AC_HELP_STRING(
[--with-doxygen=FILE],
[doxygen program to use @<:@default=doxygen@:>@])],
dnl Check the given doxygen program.
[efl_doxygen=${withval}
AC_CHECK_PROG([efl_have_doxygen],
[${efl_doxygen}],
[yes],
[no])
if test "x${efl_have_doxygen}" = "xno" ; then
echo "WARNING:"
echo "The doxygen program you specified:"
echo "${efl_doxygen}"
echo "was not found. Please check the path and make sure "
echo "the program exists and is executable."
AC_MSG_WARN([no doxygen detected. Documentation will not be built])
fi
],
[AC_CHECK_PROG([efl_have_doxygen],
[${efl_doxygen}],
[yes],
[no])
if test "x${efl_have_doxygen}" = "xno" ; then
echo "WARNING:"
echo "The doxygen program was not found in your execute path."
echo "You may have doxygen installed somewhere not covered by your path."
echo ""
echo "If this is the case make sure you have the packages installed, AND"
echo "that the doxygen program is in your execute path (see your"
echo "shell manual page on setting the \$PATH environment variable), OR"
echo "alternatively, specify the program to use with --with-doxygen."
AC_MSG_WARN([no doxygen detected. Documentation will not be built])
fi
])
fi
dnl
dnl Substitution
dnl
AC_SUBST([efl_doxygen])
if ! test "x${efl_have_doxygen}" = "xyes" ; then
efl_enable_doc="no"
fi
AM_CONDITIONAL(EFL_BUILD_DOC, test "x${efl_enable_doc}" = "xyes")
if test "x${efl_enable_doc}" = "xyes" ; then
m4_default([$1], [:])
else
m4_default([$2], [:])
fi
])
dnl End of efl_doxygen.m4

View File

@ -1,36 +0,0 @@
dnl Check for PATH_MAX in limits.h, and define a default value if not found
dnl This is a workaround for systems not providing PATH_MAX, like GNU/Hurd
dnl EFL_CHECK_PATH_MAX([DEFAULT_VALUE_IF_NOT_FOUND])
dnl
dnl If PATH_MAX is not defined in <limits.h>, defines it
dnl to DEFAULT_VALUE_IF_NOT_FOUND if it exists, or fallback
dnl to using 4096
AC_DEFUN([EFL_CHECK_PATH_MAX],
[
default_max=m4_default([$1], "4096")
AC_LANG_PUSH([C])
AC_MSG_CHECKING([for PATH_MAX in limits.h])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[
#include <limits.h>
]],
[[
int i = PATH_MAX;
]])],
[AC_MSG_RESULT([yes])],
[
AC_DEFINE_UNQUOTED([PATH_MAX],
[${default_max}],
[default value since PATH_MAX is not defined])
AC_MSG_RESULT([no: using ${default_max}])
])
AC_LANG_POP([C])
])
dnl end of efl_path_max.m4

View File

@ -1,14 +0,0 @@
# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
# -------------------------------------------
# Retrieves the value of the pkg-config variable for the given module.
AC_DEFUN([EFL_PKG_CHECK_VAR],
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
_PKG_CONFIG([$1], [variable="][$3]["], [$2])
AS_VAR_COPY([$1], [pkg_cv_][$1])
AS_VAR_IF([$1], [""], [$5], [$4])dnl
])# PKG_CHECK_VAR

View File

@ -1,92 +0,0 @@
meson_dist = \
config/default/meson.build \
config/meson.build \
config/mobile/meson.build \
config/standard/meson.build \
config/tiling/meson.build \
data/backgrounds/meson.build \
data/desktop/meson.build \
data/etc/meson.build \
data/favorites/meson.build \
data/flags/meson.build \
data/icons/meson.build \
data/images/meson.build \
data/input_methods/meson.build \
data/tools/meson.build \
data/units/meson.build \
data/session/meson.build \
doc/meson.build \
meson.build \
meson/meson-chmod.sh \
meson/clean_check.sh \
meson/meson_inst.sh \
meson/meson_modules.sh \
meson_options.txt \
po/meson.build \
src/bin/e_fm/meson.build \
src/bin/generated/meson.build \
src/bin/meson.build \
src/modules/appmenu/meson.build \
src/modules/backlight/meson.build \
src/modules/battery/meson.build \
src/modules/bluez4/meson.build \
src/modules/clock/meson.build \
src/modules/conf_applications/meson.build \
src/modules/conf_bindings/meson.build \
src/modules/conf_dialogs/meson.build \
src/modules/conf_display/meson.build \
src/modules/conf_interaction/meson.build \
src/modules/conf_intl/meson.build \
src/modules/conf_menus/meson.build \
src/modules/conf/meson.build \
src/modules/conf_paths/meson.build \
src/modules/conf_performance/meson.build \
src/modules/conf_randr/meson.build \
src/modules/conf_shelves/meson.build \
src/modules/conf_theme/meson.build \
src/modules/conf_window_manipulation/meson.build \
src/modules/conf_window_remembers/meson.build \
src/modules/connman/meson.build \
src/modules/cpufreq/meson.build \
src/modules/everything/meson.build \
src/modules/fileman/meson.build \
src/modules/fileman_opinfo/meson.build \
src/modules/gadman/meson.build \
src/modules/geolocation/meson.build \
src/modules/ibar/meson.build \
src/modules/ibox/meson.build \
src/modules/lokker/meson.build \
src/modules/luncher/meson.build \
src/modules/meson.build \
src/modules/mixer/meson.build \
src/modules/msgbus/meson.build \
src/modules/music-control/meson.build \
src/modules/notification/meson.build \
src/modules/packagekit/meson.build \
src/modules/pager/meson.build \
src/modules/pager_plain/meson.build \
src/modules/quickaccess/meson.build \
src/modules/shot/meson.build \
src/modules/start/meson.build \
src/modules/syscon/meson.build \
src/modules/sysinfo/meson.build \
src/modules/systray/meson.build \
src/modules/tasks/meson.build \
src/modules/teamwork/meson.build \
src/modules/temperature/meson.build \
src/modules/tiling/meson.build \
src/modules/time/meson.build \
src/modules/vkbd/meson.build \
src/modules/winlist/meson.build \
src/modules/wireless/meson.build \
src/modules/wizard/meson.build \
src/modules/wl_buffer/meson.build \
src/modules/wl_desktop_shell/meson.build \
src/modules/wl_drm/meson.build \
src/modules/wl_fb/meson.build \
src/modules/wl_text_input/meson.build \
src/modules/wl_weekeyboard/meson.build \
src/modules/wl_wl/meson.build \
src/modules/wl_x11/meson.build \
src/modules/xkbswitch/meson.build \
src/modules/xwayland/meson.build

13
po/.gitignore vendored
View File

@ -1,13 +0,0 @@
/Makefile.in.in
/Makevars.template
/POTFILES
/Rules-quot
/boldquot.sed
/en@boldquot.header
/en@quot.header
/enlightenment.pot
/insert-header.sin
/quot.sed
/remove-potcdate.sed
/remove-potcdate.sin
/stamp-po

View File

@ -1,10 +0,0 @@
MAINTAINERCLEANFILES += \
po/boldquot.sed \
po/en@boldquot.header \
po/en@quot.header \
po/insert-header.sin \
po/Makefile.in.in \
po/Makevars.template \
po/quot.sed \
po/remove-potcdate.sin \
po/Rules-quot

View File

@ -1,11 +0,0 @@
include src/bin/Makefile.mk
include src/modules/Makefile.mk
EXTRA_DIST += \
src/protocol/teamwork.xml \
src/protocol/session-recovery.xml \
src/protocol/efl-aux-hints.xml \
src/protocol/www.xml \
src/protocol/action_route.xml \
src/protocol/e-gadget.xml \
src/protocol/xdg-foreign-unstable-v1.xml

19
src/bin/.gitignore vendored
View File

@ -1,19 +0,0 @@
/e_fm_shared_types.h
/enlightenment
/enlightenment_alert
/enlightenment_backlight
/enlightenment_ckpasswd
/enlightenment_fm_op
/enlightenment_filemanager
/enlightenment_imc
/enlightenment_init
/enlightenment_open
/enlightenment_start
/enlightenment_static_grabber
/enlightenment_sys
/enlightenment_thumb
/enlightenment_open
/enlightenment_elm_cfgtool
/enlightenment_askpass
/e_fm/enlightenment_fm

View File

@ -1,595 +0,0 @@
DISTCLEANFILES += src/bin/e_fm_shared_types.h
EXTRA_DIST += \
src/bin/e_drm2.x \
src/bin/e_gadget_loader.c
efx_files = \
src/bin/efx/efx_bumpmapping.c \
src/bin/efx/efx.c \
src/bin/efx/efx_fade.c \
src/bin/efx/efx_helpers.c \
src/bin/efx/efx_move.c \
src/bin/efx/efx_pan.c \
src/bin/efx/e_efx_private.h \
src/bin/efx/efx_queue.c \
src/bin/efx/efx_resize.c \
src/bin/efx/efx_rotate.c \
src/bin/efx/efx_spin.c \
src/bin/efx/efx_util.c \
src/bin/efx/efx_zoom.c
E_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_builddir)/src/bin \
-I$(top_srcdir) \
-I$(top_srcdir)/src/bin \
-I$(top_srcdir)/src/bin/efx \
-I$(top_builddir)/src/bin/generated \
@e_cflags@ \
@cf_cflags@ \
@VALGRIND_CFLAGS@ \
@EDJE_DEF@ \
@WAYLAND_CFLAGS@ \
-DE_BINDIR=\"$(bindir)\" \
-DPACKAGE_BIN_DIR=\"@PACKAGE_BIN_DIR@\" \
-DPACKAGE_LIB_DIR=\"@PACKAGE_LIB_DIR@\" \
-DPACKAGE_DATA_DIR=\"@PACKAGE_DATA_DIR@\" \
-DLOCALE_DIR=\"@LOCALE_DIR@\" \
-DPACKAGE_SYSCONF_DIR=\"@PACKAGE_SYSCONF_DIR@\"
bin_PROGRAMS = \
src/bin/enlightenment \
src/bin/enlightenment_imc \
src/bin/enlightenment_start \
src/bin/enlightenment_filemanager \
src/bin/enlightenment_open \
src/bin/enlightenment_askpass
internal_bindir = $(libdir)/enlightenment/utils
internal_bin_PROGRAMS = \
src/bin/enlightenment_backlight \
src/bin/enlightenment_fm_op \
src/bin/enlightenment_sys \
src/bin/enlightenment_thumb \
src/bin/enlightenment_elm_cfgtool \
src/bin/enlightenment_static_grabber \
src/bin/enlightenment_alert
if HAVE_FREEBSD
internal_bin_PROGRAMS += src/bin/enlightenment_ckpasswd
endif
ENLIGHTENMENTHEADERS = \
src/bin/efx/e_Efx.h \
src/bin/e_about.h \
src/bin/e_acpi.h \
src/bin/e_actions.h \
src/bin/e_alert.h \
src/bin/e_atoms.h \
src/bin/e_auth.h \
src/bin/e_backlight.h \
src/bin/e_bg.h \
src/bin/e_bindings.h \
src/bin/e_bryce.h \
src/bin/e_client.h \
src/bin/e_client_volume.h \
src/bin/e_client.x \
src/bin/e_color_dialog.h \
src/bin/e_color.h \
src/bin/e_comp.h \
src/bin/e_comp_canvas.h \
src/bin/e_comp_cfdata.h \
src/bin/e_comp_object.h \
src/bin/e_comp_x.h \
src/bin/e_comp_x_randr.h \
src/bin/e_config_data.h \
src/bin/e_config_dialog.h \
src/bin/e_config.h \
src/bin/e_configure.h \
src/bin/e_confirm_dialog.h \
src/bin/e_datastore.h \
src/bin/e_dbusmenu.h \
src/bin/e_desk.h \
src/bin/e_deskenv.h \
src/bin/e_desklock.h \
src/bin/e_deskmirror.h \
src/bin/e_dialog.h \
src/bin/e_dnd.h \
src/bin/e_dpms.h \
src/bin/e_desktop_editor.h \
src/bin/e_entry_dialog.h \
src/bin/e_env.h \
src/bin/e_error.h \
src/bin/e_exec.h \
src/bin/e_exehist.h \
src/bin/e_filereg.h \
src/bin/e_flowlayout.h \
src/bin/e_fm_custom.h \
src/bin/e_fm_device.h \
src/bin/e_fm.h \
src/bin/e_fm_mime.h \
src/bin/e_fm_op.h \
src/bin/e_fm_op_registry.h \
src/bin/e_fm_prop.h \
src/bin/e_fm_shared_codec.h \
src/bin/e_fm_shared_device.h \
src/bin/e_focus.h \
src/bin/e_font.h \
src/bin/e_gadcon.h \
src/bin/e_gadcon_popup.h \
src/bin/e_gadget.h \
src/bin/e_gadget_types.h \
src/bin/e_grabinput.h \
src/bin/e_grab_dialog.h \
src/bin/e.h \
src/bin/e_macros.h \
src/bin/e_hints.h \
src/bin/e_icon.h \
src/bin/e_ilist.h \
src/bin/e_import_config_dialog.h \
src/bin/e_import_dialog.h \
src/bin/e_includes.h \
src/bin/e_init.h \
src/bin/e_int_client_locks.h \
src/bin/e_int_client_menu.h \
src/bin/e_int_client_prop.h \
src/bin/e_int_client_remember.h \
src/bin/e_int_config_modules.h \
src/bin/e_int_gadcon_config.h \
src/bin/e_intl_data.h \
src/bin/e_intl.h \
src/bin/e_int_menus.h \
src/bin/e_int_shelf_config.h \
src/bin/e_int_toolbar_config.h \
src/bin/e_ipc_codec.h \
src/bin/e_ipc.h \
src/bin/e_layout.h \
src/bin/e_livethumb.h \
src/bin/e_log.h \
src/bin/e_maximize.h \
src/bin/e_menu.h \
src/bin/e_mmx.h \
src/bin/e_module.h \
src/bin/e_mouse.h \
src/bin/e_moveresize.h \
src/bin/e_msgbus.h \
src/bin/e_notification.h \
src/bin/e_msg.h \
src/bin/e_obj_dialog.h \
src/bin/e_object.h \
src/bin/e_order.h \
src/bin/e_pan.h \
src/bin/e_path.h \
src/bin/e_pixmap.h \
src/bin/e_place.h \
src/bin/e_pointer.h \
src/bin/e_powersave.h \
src/bin/e_prefix.h \
src/bin/e_randr2.h \
src/bin/e_remember.h \
src/bin/e_resist.h \
src/bin/e_scale.h \
src/bin/e_screensaver.h \
src/bin/e_scrollframe.h \
src/bin/e_sha1.h \
src/bin/e_shelf.h \
src/bin/e_signals.h \
src/bin/e_slidecore.h \
src/bin/e_slider.h \
src/bin/e_slidesel.h \
src/bin/e_spectrum.h \
src/bin/e_startup.h \
src/bin/e_sys.h \
src/bin/e_test.h \
src/bin/e_theme_about.h \
src/bin/e_theme.h \
src/bin/e_thumb.h \
src/bin/e_toolbar.h \
src/bin/e_update.h \
src/bin/e_user.h \
src/bin/e_utils.h \
src/bin/e_video.h \
src/bin/e_widget_aspect.h \
src/bin/e_widget_button.h \
src/bin/e_widget_check.h \
src/bin/e_widget_color_well.h \
src/bin/e_widget_config_list.h \
src/bin/e_widget_bgpreview.h \
src/bin/e_widget_entry.h \
src/bin/e_widget_filepreview.h \
src/bin/e_widget_flist.h \
src/bin/e_widget_font_preview.h \
src/bin/e_widget_framelist.h \
src/bin/e_widget_frametable.h \
src/bin/e_widget_fsel.h \
src/bin/e_widget.h \
src/bin/e_widget_ilist.h \
src/bin/e_widget_image.h \
src/bin/e_widget_label.h \
src/bin/e_widget_list.h \
src/bin/e_widget_preview.h \
src/bin/e_widget_radio.h \
src/bin/e_widget_scrollframe.h \
src/bin/e_widget_slider.h \
src/bin/e_widget_spectrum.h \
src/bin/e_widget_table.h \
src/bin/e_widget_textblock.h \
src/bin/e_widget_toolbar.h \
src/bin/e_widget_toolbook.h \
src/bin/e_win.h \
src/bin/e_xinerama.h \
src/bin/e_xkb.h \
src/bin/e_xsettings.h \
src/bin/e_zoomap.h \
src/bin/e_zone.h
if HAVE_WAYLAND
ENLIGHTENMENTHEADERS += \
src/bin/e_comp_wl_data.h \
src/bin/e_comp_wl_dmabuf.h \
src/bin/e_comp_wl_input.h \
src/bin/e_comp_wl.h
endif
enlightenment_gen_src =
MAINTAINERCLEANFILES += $(enlightenment_gen_src)
enlightenment_src = \
src/bin/e_about.c \
src/bin/e_acpi.c \
src/bin/e_actions.c \
src/bin/e_atoms.c \
src/bin/e_auth.c \
src/bin/e_backlight.c \
src/bin/e_bg.c \
src/bin/e_bindings.c \
src/bin/e_bryce.c \
src/bin/e_bryce_editor.c \
src/bin/e_client.c \
src/bin/e_client_volume.c \
src/bin/e_color.c \
src/bin/e_color_dialog.c \
src/bin/e_comp.c \
src/bin/e_comp_canvas.c \
src/bin/e_comp_cfdata.c \
src/bin/e_comp_object.c \
src/bin/e_config.c \
src/bin/e_config_data.c \
src/bin/e_config_dialog.c \
src/bin/e_configure.c \
src/bin/e_confirm_dialog.c \
src/bin/e_datastore.c \
src/bin/e_dbusmenu.c \
src/bin/e_desk.c \
src/bin/e_deskenv.c \
src/bin/e_desklock.c \
src/bin/e_deskmirror.c \
src/bin/e_dialog.c \
src/bin/e_dpms.c \
src/bin/e_desktop_editor.c \
src/bin/e_dnd.c \
src/bin/e_entry_dialog.c \
src/bin/e_env.c \
src/bin/e_error.c \
src/bin/e_exec.c \
src/bin/e_exehist.c \
src/bin/e_filereg.c \
src/bin/e_flowlayout.c \
src/bin/e_fm.c \
src/bin/e_fm_custom.c \
src/bin/e_fm_device.c \
src/bin/e_fm_mime.c \
src/bin/e_fm_op_registry.c \
src/bin/e_fm_prop.c \
src/bin/e_fm_shared_codec.c \
src/bin/e_fm_shared_device.c \
src/bin/e_focus.c \
src/bin/e_font.c \
src/bin/e_gadcon.c \
src/bin/e_gadcon_popup.c \
src/bin/e_gadget.c \
src/bin/e_grabinput.c \
src/bin/e_grab_dialog.c \
src/bin/e_hints.c \
src/bin/e_icon.c \
src/bin/e_ilist.c \
src/bin/e_import_config_dialog.c \
src/bin/e_import_dialog.c \
src/bin/e_init.c \
src/bin/e_int_client_locks.c \
src/bin/e_int_client_menu.c \
src/bin/e_int_client_prop.c \
src/bin/e_int_client_remember.c \
src/bin/e_int_config_modules.c \
src/bin/e_int_config_comp.c \
src/bin/e_int_config_comp_match.c \
src/bin/e_int_gadcon_config.c \
src/bin/e_intl.c \
src/bin/e_intl_data.c \
src/bin/e_int_menus.c \
src/bin/e_int_shelf_config.c \
src/bin/e_int_toolbar_config.c \
src/bin/e_ipc.c \
src/bin/e_ipc_codec.c \
src/bin/e_layout.c \
src/bin/e_livethumb.c \
src/bin/e_log.c \
src/bin/e_maximize.c \
src/bin/e_menu.c \
src/bin/e_module.c \
src/bin/e_mouse.c \
src/bin/e_moveresize.c \
src/bin/e_msgbus.c \
src/bin/e_notification.c \
src/bin/e_msg.c \
src/bin/e_obj_dialog.c \
src/bin/e_object.c \
src/bin/e_order.c \
src/bin/e_pan.c \
src/bin/e_path.c \
src/bin/e_pixmap.c \
src/bin/e_place.c \
src/bin/e_pointer.c \
src/bin/e_powersave.c \
src/bin/e_prefix.c \
src/bin/e_randr2.c \
src/bin/e_remember.c \
src/bin/e_resist.c \
src/bin/e_scale.c \
src/bin/e_screensaver.c \
src/bin/e_scrollframe.c \
src/bin/e_sha1.c \
src/bin/e_shelf.c \
src/bin/e_signals.c \
src/bin/e_slidecore.c \
src/bin/e_slider.c \
src/bin/e_slidesel.c \
src/bin/e_spectrum.c \
src/bin/e_startup.c \
src/bin/e_sys.c \
src/bin/e_test.c \
src/bin/e_theme_about.c \
src/bin/e_theme.c \
src/bin/e_thumb.c \
src/bin/e_toolbar.c \
src/bin/e_update.c \
src/bin/e_user.c \
src/bin/e_utils.c \
src/bin/e_video.c \
src/bin/e_widget_aspect.c \
src/bin/e_widget_button.c \
src/bin/e_widget.c \
src/bin/e_widget_check.c \
src/bin/e_widget_color_well.c \
src/bin/e_widget_config_list.c \
src/bin/e_widget_bgpreview.c \
src/bin/e_widget_entry.c \
src/bin/e_widget_filepreview.c \
src/bin/e_widget_flist.c \
src/bin/e_widget_font_preview.c \
src/bin/e_widget_framelist.c \
src/bin/e_widget_frametable.c \
src/bin/e_widget_fsel.c \
src/bin/e_widget_ilist.c \
src/bin/e_widget_image.c \
src/bin/e_widget_label.c \
src/bin/e_widget_list.c \
src/bin/e_widget_preview.c \
src/bin/e_widget_radio.c \
src/bin/e_widget_scrollframe.c \
src/bin/e_widget_slider.c \
src/bin/e_widget_spectrum.c \
src/bin/e_widget_table.c \
src/bin/e_widget_textblock.c \
src/bin/e_widget_toolbar.c \
src/bin/e_widget_toolbook.c \
src/bin/e_win.c \
src/bin/e_xkb.c \
src/bin/e_xinerama.c \
src/bin/e_zoomap.c \
src/bin/e_zone.c \
$(ENLIGHTENMENTHEADERS) \
$(efx_files)
if ! HAVE_WAYLAND_ONLY
enlightenment_src += \
src/bin/e_comp_x.c \
src/bin/e_comp_x_randr.c \
src/bin/e_alert.c \
src/bin/e_xsettings.c
endif
if HAVE_WAYLAND
#Stolen from weston's Makefile.am and modified for Enlightenment
.SECONDEXPANSION:
define protostability
$(if $(findstring unstable,$1),unstable,stable)
endef
define protoname
$(shell echo $1 | sed 's/\([a-z\-]\+\)-[a-z]\+-v[0-9]\+/\1/')
endef
%-protocol.c : $(WAYLAND_PROTOCOLS_DATADIR)/$$(call protostability,$$*)/$$(call protoname,$$*)/$$*.xml
$(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) code < $< > $@
%-server-protocol.h : $(WAYLAND_PROTOCOLS_DATADIR)/$$(call protostability,$$*)/$$(call protoname,$$*)/$$*.xml
$(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) server-header < $< > $@
%-client-protocol.h : $(WAYLAND_PROTOCOLS_DATADIR)/$$(call protostability,$$*)/$$(call protoname,$$*)/$$*.xml
$(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) client-header < $< > $@
%-protocol.c : $(top_srcdir)/src/protocol/$(notdir $$*).xml
$(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) code < $< > $@
%-server-protocol.h : $(top_srcdir)/src/protocol/$(notdir $$*).xml
$(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) server-header < $< > $@
%-client-protocol.h : $(top_srcdir)/src/protocol/$(notdir $$*).xml
$(AM_V_GEN)$(MKDIR_P) $(dir $@) && $(wayland_scanner) client-header < $< > $@
#End of weston stuff
enlightenment_src += \
src/bin/e_comp_wl_data.c \
src/bin/e_comp_wl_input.c \
src/bin/e_comp_wl_dmabuf.c \
src/bin/e_comp_wl.c \
src/bin/e_comp_wl_extensions.c \
src/bin/e_comp_wl_extensions_tizen.c \
src/bin/e_gadget_runner.c
enlightenment_gen_src += \
src/bin/generated/linux-dmabuf-unstable-v1-server-protocol.h \
src/bin/generated/linux-dmabuf-unstable-v1-protocol.c \
src/bin/generated/session-recovery-protocol.c \
src/bin/generated/session-recovery-server-protocol.h \
src/bin/generated/www-protocol.c \
src/bin/generated/www-server-protocol.h \
src/bin/generated/action_route-protocol.c \
src/bin/generated/action_route-server-protocol.h \
src/bin/generated/xdg-foreign-unstable-v1-protocol.c \
src/bin/generated/xdg-foreign-unstable-v1-server-protocol.h \
src/bin/generated/relative-pointer-unstable-v1-protocol.c \
src/bin/generated/relative-pointer-unstable-v1-server-protocol.h \
src/bin/generated/pointer-constraints-unstable-v1-protocol.c \
src/bin/generated/pointer-constraints-unstable-v1-server-protocol.h \
src/bin/generated/efl-aux-hints-protocol.c \
src/bin/generated/efl-aux-hints-server-protocol.h \
src/bin/generated/e-gadget-protocol.c \
src/bin/generated/e-gadget-server-protocol.h
protocol_files = \
src/protocol/action_route.xml \
src/protocol/e-gadget.xml \
src/protocol/efl-aux-hints.xml \
src/protocol/session-recovery.xml \
src/protocol/www.xml
src/bin/e_comp_wl_extensions.c: \
$(enlightenment_gen_src) \
$(protocol_files)
src/bin/e_comp_wl.c: \
src/bin/generated/www-server-protocol.h
src/bin/e_comp_wl_dmabuf.c: \
src/bin/generated/linux-dmabuf-unstable-v1-server-protocol.h
endif
src_bin_enlightenment_CPPFLAGS = $(E_CPPFLAGS) -DE_LOGGING=1 @WAYLAND_CFLAGS@ @ECORE_X_CFLAGS@
src_bin_enlightenment_SOURCES = \
src/bin/e_main.c \
$(enlightenment_src)
nodist_src_bin_enlightenment_SOURCES = $(enlightenment_gen_src)
src_bin_enlightenment_LDFLAGS = -export-dynamic
src_bin_enlightenment_LDADD = @e_libs@ @dlopen_libs@ @cf_libs@ @VALGRIND_LIBS@ @WAYLAND_LIBS@ @WL_DRM_LIBS@ -lm @SHM_OPEN_LIBS@ @ECORE_X_LIBS@
src_bin_enlightenment_imc_SOURCES = \
src/bin/e.h \
src/bin/e_macros.h \
src/bin/e_config_data.c \
src/bin/e_imc_main.c \
src/bin/e_intl_data.c
src_bin_enlightenment_imc_LDADD = @E_IMC_LIBS@
src_bin_enlightenment_imc_CPPFLAGS = $(E_CPPFLAGS)
src_bin_enlightenment_start_SOURCES = \
src/bin/e_start_main.c
src_bin_enlightenment_start_CPPFLAGS = $(E_CPPFLAGS) @E_START_CFLAGS@
src_bin_enlightenment_start_LDADD = @dlopen_libs@ @E_START_LIBS@
src_bin_enlightenment_askpass_SOURCES = \
src/bin/e_askpass_main.c
src_bin_enlightenment_askpass_LDADD = @E_ASKPASS_LIBS@
src_bin_enlightenment_askpass_CPPFLAGS = $(E_CPPFLAGS)
src_bin_enlightenment_thumb_SOURCES = \
src/bin/e_sha1.c \
src/bin/e_thumb_main.c \
src/bin/e_user.c
src_bin_enlightenment_thumb_LDADD = @e_libs@
src_bin_enlightenment_thumb_CPPFLAGS = $(E_CPPFLAGS)
src_bin_enlightenment_elm_cfgtool_SOURCES = \
src/bin/e_elm_cfgtool_main.c
src_bin_enlightenment_elm_cfgtool_LDADD = @e_libs@ -lm
src_bin_enlightenment_elm_cfgtool_CPPFLAGS = $(E_CPPFLAGS)
src_bin_enlightenment_fm_op_SOURCES = \
src/bin/e_fm_op.c
src_bin_enlightenment_fm_op_LDADD = @E_FM_OP_LIBS@ -lm
src_bin_enlightenment_fm_op_CPPFLAGS = $(E_CPPFLAGS)
src_bin_enlightenment_sys_SOURCES = \
src/bin/e_sys_main.c \
src/bin/e_sys_l2ping.c
src_bin_enlightenment_sys_LDADD = @SUID_LDFLAGS@ @E_SYS_LIBS@ @BLUEZ_LIBS@
src_bin_enlightenment_sys_CPPFLAGS = @SUID_CFLAGS@ @E_SYS_CFLAGS@ @BLUEZ_CFLAGS@ -DPACKAGE_SYSCONF_DIR=\"@PACKAGE_SYSCONF_DIR@\"
src_bin_enlightenment_backlight_SOURCES = \
src/bin/e_backlight_main.c
src_bin_enlightenment_backlight_CPPFLAGS = @SUID_CFLAGS@ @EEZE_CFLAGS@
src_bin_enlightenment_backlight_LDADD = @SUID_LDFLAGS@ @EEZE_LIBS@
if HAVE_FREEBSD
src_bin_enlightenment_ckpasswd_SOURCES = \
src/bin/e_ckpasswd_main.c
src_bin_enlightenment_ckpasswd_CPPFLAGS = @SUID_CFLAGS@
src_bin_enlightenment_ckpasswd_LDADD = @SUID_LDFLAGS@ -lcrypt
endif
src_bin_enlightenment_alert_SOURCES = \
src/bin/e_alert_main.c
src_bin_enlightenment_alert_LDADD = @E_ALERT_LIBS@ @dlopen_libs@
src_bin_enlightenment_alert_CPPFLAGS = @E_ALERT_CFLAGS@
src_bin_enlightenment_filemanager_SOURCES = \
src/bin/e_fm_cmdline.c
src_bin_enlightenment_filemanager_LDADD = @E_FM_CMDLINE_LIBS@
src_bin_enlightenment_filemanager_CPPFLAGS = @E_FM_CMDLINE_CFLAGS@
src_bin_enlightenment_open_SOURCES = \
src/bin/e_open.c
src_bin_enlightenment_open_LDADD = @E_OPEN_LIBS@
src_bin_enlightenment_open_CPPFLAGS = @E_OPEN_CFLAGS@
src_bin_enlightenment_static_grabber_SOURCES = \
src/bin/e_static_grab.c
src_bin_enlightenment_static_grabber_LDADD = @E_GRABBER_LIBS@
src_bin_enlightenment_static_grabber_CPPFLAGS = @E_GRABBER_CFLAGS@
include src/bin/e_fm/Makefile.mk
# HACK! why install-data-hook? install-exec-hook is run after bin_PROGRAMS
# and before internal_bin_PROGRAMS are installed. install-data-hook is
# run after both
setuid_root_mode = a=rx,u+xs
enlightenment-sys-install-data-hook:
@chmod $(setuid_root_mode) $(DESTDIR)$(libdir)/enlightenment/utils/enlightenment_sys$(EXEEXT) || true
@chmod $(setuid_root_mode) $(DESTDIR)$(libdir)/enlightenment/utils/enlightenment_backlight$(EXEEXT) || true
if HAVE_FREEBSD
@chmod $(setuid_root_mode) $(DESTDIR)$(libdir)/enlightenment/utils/enlightenment_ckpasswd$(EXEEXT) || true
endif
installed_headersdir = $(prefix)/include/enlightenment
installed_headers_DATA = $(ENLIGHTENMENTHEADERS) src/bin/e_fm_shared_types.h
INSTALL_DATA_HOOKS += enlightenment-sys-install-data-hook
PHONIES += e enlightenment install-e install-enlightenment
e: $(bin_PROGRAMS)
enlightenment: e
install-e: install-binPROGRAMS
install-enlightenment: install-e

View File

@ -1,4 +0,0 @@
/e_fm_shared_codec.c
/e_fm_shared_device.c
/e_user.c

View File

@ -1,58 +0,0 @@
EFM_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_builddir)/src/bin \
-I$(top_srcdir) \
-I$(top_srcdir)/src/bin \
-I$(top_srcdir)/src/bin/efx \
@e_cflags@ \
@cf_cflags@ \
@VALGRIND_CFLAGS@ \
@EDJE_DEF@ \
@WAYLAND_CFLAGS@ \
-DPACKAGE_BIN_DIR=\"@PACKAGE_BIN_DIR@\" \
-DPACKAGE_LIB_DIR=\"@PACKAGE_LIB_DIR@\" \
-DPACKAGE_DATA_DIR=\"@PACKAGE_DATA_DIR@\" \
-DLOCALE_DIR=\"@LOCALE_DIR@\" \
-DPACKAGE_SYSCONF_DIR=\"@PACKAGE_SYSCONF_DIR@\"
EFM_LIBS =
efm_bindir = $(libdir)/enlightenment/utils
efm_bin_PROGRAMS = \
src/bin/e_fm/enlightenment_fm
if HAVE_UDISKS_MOUNT
udisks_s = \
src/bin/e_fm/e_fm_main_udisks.h \
src/bin/e_fm/e_fm_main_udisks.c \
src/bin/e_fm/e_fm_main_udisks2.h \
src/bin/e_fm/e_fm_main_udisks2.c
else
udisks_s =
endif
if HAVE_EEZE_MOUNT
EFM_CPPFLAGS += @EEZE_CFLAGS@ @EET_CFLAGS@
EFM_LIBS += @EEZE_LIBS@ @EET_LIBS@
eeze_s = \
src/bin/e_prefix.c \
src/bin/e_fm/e_fm_main_eeze.h \
src/bin/e_fm/e_fm_main_eeze.c
else
eeze_s =
endif
src_bin_e_fm_enlightenment_fm_SOURCES = \
src/bin/e_fm/e_fm_main.h \
src/bin/e_fm/e_fm_ipc.h \
src/bin/e_fm/e_fm_main.c \
src/bin/e_fm/e_fm_ipc.c \
$(udisks_s) \
$(eeze_s) \
src/bin/e_fm_shared_codec.c \
src/bin/e_fm_shared_device.c \
src/bin/e_user.c \
src/bin/e_sha1.c
src_bin_e_fm_enlightenment_fm_LDADD = @E_FM_LIBS@ $(EFM_LIBS)
src_bin_e_fm_enlightenment_fm_CPPFLAGS = $(EFM_CPPFLAGS)

View File

@ -1,139 +0,0 @@
MDIR = $(libdir)/enlightenment/modules
MOD_LDFLAGS = -module -avoid-version
MOD_CPPFLAGS = -I. \
-I$(top_srcdir) \
-I$(top_srcdir)/src/bin \
-I$(top_srcdir)/src/bin/efx \
-I$(top_builddir)/src/bin \
-I$(top_srcdir)/src/modules \
@e_cflags@ \
@WAYLAND_CFLAGS@ \
-DE_BINDIR=\"$(bindir)\"
MOD_LIBS = @e_libs@ @dlopen_libs@
include src/modules/Makefile_connman.mk
include src/modules/Makefile_bluez4.mk
include src/modules/Makefile_ibar.mk
include src/modules/Makefile_clock.mk
include src/modules/Makefile_pager.mk
include src/modules/Makefile_pager_plain.mk
include src/modules/Makefile_battery.mk
include src/modules/Makefile_temperature.mk
include src/modules/Makefile_notification.mk
include src/modules/Makefile_cpufreq.mk
include src/modules/Makefile_ibox.mk
include src/modules/Makefile_start.mk
include src/modules/Makefile_winlist.mk
include src/modules/Makefile_fileman.mk
include src/modules/Makefile_fileman_opinfo.mk
include src/modules/Makefile_wizard.mk
include src/modules/Makefile_conf.mk
include src/modules/Makefile_conf_theme.mk
include src/modules/Makefile_conf_intl.mk
include src/modules/Makefile_msgbus.mk
include src/modules/Makefile_conf_applications.mk
include src/modules/Makefile_conf_display.mk
include src/modules/Makefile_conf_shelves.mk
include src/modules/Makefile_conf_bindings.mk
include src/modules/Makefile_conf_window_remembers.mk
include src/modules/Makefile_conf_window_manipulation.mk
include src/modules/Makefile_conf_menus.mk
include src/modules/Makefile_conf_dialogs.mk
include src/modules/Makefile_conf_performance.mk
include src/modules/Makefile_conf_paths.mk
include src/modules/Makefile_conf_interaction.mk
include src/modules/Makefile_conf_randr.mk
include src/modules/Makefile_gadman.mk
include src/modules/Makefile_mixer.mk
include src/modules/Makefile_syscon.mk
include src/modules/Makefile_everything.mk
include src/modules/Makefile_systray.mk
include src/modules/Makefile_appmenu.mk
include src/modules/Makefile_quickaccess.mk
include src/modules/Makefile_teamwork.mk
include src/modules/Makefile_lokker.mk
include src/modules/Makefile_luncher.mk
include src/modules/Makefile_shot.mk
include src/modules/Makefile_backlight.mk
include src/modules/Makefile_tasks.mk
include src/modules/Makefile_xkbswitch.mk
include src/modules/Makefile_tiling.mk
include src/modules/Makefile_music_control.mk
include src/modules/Makefile_packagekit.mk
include src/modules/Makefile_wl_drm.mk
include src/modules/Makefile_wl_buffer.mk
include src/modules/Makefile_wl_wl.mk
include src/modules/Makefile_wl_desktop_shell.mk
include src/modules/Makefile_wl_x11.mk
#include src/modules/Makefile_wl_fb.mk
include src/modules/Makefile_xwayland.mk
include src/modules/Makefile_wl_text_input.mk
include src/modules/Makefile_wl_weekeyboard.mk
include src/modules/Makefile_geolocation.mk
include src/modules/Makefile_sysinfo.mk
include src/modules/Makefile_wireless.mk
include src/modules/Makefile_time.mk
include src/modules/Makefile_vkbd.mk

View File

@ -1,24 +0,0 @@
EXTRA_DIST += src/modules/appmenu/module.desktop \
src/modules/appmenu/e-module-appmenu.edj
if USE_MODULE_APPMENU
appmenudir = $(MDIR)/appmenu
appmenu_DATA = src/modules/appmenu/module.desktop \
src/modules/appmenu/e-module-appmenu.edj
appmenupkgdir = $(MDIR)/appmenu/$(MODULE_ARCH)
appmenupkg_LTLIBRARIES = src/modules/appmenu/module.la
src_modules_appmenu_module_la_LIBADD = $(MOD_LIBS)
src_modules_appmenu_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_appmenu_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_appmenu_module_la_SOURCES = src/modules/appmenu/e_mod_main.c \
src/modules/appmenu/e_mod_dbus_registrar_server.c \
src/modules/appmenu/e_mod_appmenu_render.c \
src/modules/appmenu/e_mod_appmenu_private.h
PHONIES += appmenu install-appmenu
appmenu: $(appmenupkg_LTLIBRARIES) $(appmenu_DATA)
install-appmenu: install-appmenuDATA install-appmenupkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/backlight/module.desktop \
src/modules/backlight/e-module-backlight.edj
if USE_MODULE_BACKLIGHT
backlightdir = $(MDIR)/backlight
backlight_DATA = src/modules/backlight/e-module-backlight.edj \
src/modules/backlight/module.desktop
backlightpkgdir = $(MDIR)/backlight/$(MODULE_ARCH)
backlightpkg_LTLIBRARIES = src/modules/backlight/module.la
src_modules_backlight_module_la_LIBADD = $(MOD_LIBS)
src_modules_backlight_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_backlight_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_backlight_module_la_SOURCES = src/modules/backlight/e_mod_main.c \
src/modules/backlight/gadget/backlight.h \
src/modules/backlight/gadget/backlight.c \
src/modules/backlight/gadget/mod.c
PHONIES += backlight install-backlight
backlight: $(backlightpkg_LTLIBRARIES) $(backlight_DATA)
install-backlight: install-backlightDATA install-backlightpkgLTLIBRARIES
endif

View File

@ -1,53 +0,0 @@
EXTRA_DIST += src/modules/battery/module.desktop \
src/modules/battery/e-module-battery.edj
if USE_MODULE_BATTERY
batterydir = $(MDIR)/battery
battery_DATA = src/modules/battery/e-module-battery.edj \
src/modules/battery/module.desktop
batterypkgdir = $(MDIR)/battery/$(MODULE_ARCH)
batterypkg_LTLIBRARIES = src/modules/battery/module.la
src_modules_battery_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_battery_module_la_SOURCES = src/modules/battery/e_mod_main.h \
src/modules/battery/e_mod_main.c \
src/modules/battery/e_mod_config.c
if HAVE_EEZE
src_modules_battery_module_la_SOURCES += src/modules/battery/e_mod_udev.c
else
if HAVE_OPENBSD
src_modules_battery_module_la_SOURCES += src/modules/battery/e_mod_sysctl.c
else
if HAVE_NETBSD
src_modules_battery_module_la_SOURCES += src/modules/battery/e_mod_sysctl.c
else
if HAVE_DRAGONFLY
src_modules_battery_module_la_SOURCES += src/modules/battery/e_mod_sysctl.c
else
if HAVE_FREEBSD
src_modules_battery_module_la_SOURCES += src/modules/battery/e_mod_sysctl.c
else
src_modules_battery_module_la_SOURCES += src/modules/battery/e_mod_upower.c
endif
endif
endif
endif
endif
src_modules_battery_module_la_LIBADD = $(MOD_LIBS)
src_modules_battery_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_battery_batgetdir = $(batterypkgdir)
src_modules_battery_batget_PROGRAMS = src/modules/battery/batget
src_modules_battery_batget_CPPFLAGS = $(MOD_CPPFLAGS) @BATTERY_CFLAGS@
src_modules_battery_batget_LDADD = $(MOD_LIBS)
src_modules_battery_batget_SOURCES = src/modules/battery/batget.c
src_modules_battery_batget_LDFLAGS = @BATTERY_LDFLAGS@
PHONIES += battery install-battery
battery: $(batterypkg_LTLIBRARIES) $(battery_DATA) $(src_modules_battery_batget_PROGRAMS)
install-battery: install-batteryDATA install-batterypkgLTLIBRARIES install-src_modules_battery_batgetPROGRAMS
endif

View File

@ -1,26 +0,0 @@
EXTRA_DIST += src/modules/bluez4/module.desktop \
src/modules/bluez4/e-module-bluez4.edj
if USE_MODULE_BLUEZ4
bluez4dir = $(MDIR)/bluez4
bluez4_DATA = src/modules/bluez4/e-module-bluez4.edj \
src/modules/bluez4/module.desktop
bluez4pkgdir = $(MDIR)/bluez4/$(MODULE_ARCH)
bluez4pkg_LTLIBRARIES = src/modules/bluez4/module.la
src_modules_bluez4_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_bluez4_module_la_SOURCES = src/modules/bluez4/e_mod_main.h \
src/modules/bluez4/e_mod_main.c \
src/modules/bluez4/ebluez4.h \
src/modules/bluez4/ebluez4.c \
src/modules/bluez4/agent.h \
src/modules/bluez4/agent.c
src_modules_bluez4_module_la_CPPFLAGS = $(MOD_CPPFLAGS) -Wno-unused-parameter
src_modules_bluez4_module_la_LIBADD = $(MOD_LIBS)
PHONIES += bluez4 install-bluez4
bluez4: $(bluez4pkg_LTLIBRARIES) $(bluez4_DATA)
install-bluez4: install-bluez4DATA install-bluez4pkgLTLIBRARIES
endif

View File

@ -1,22 +0,0 @@
EXTRA_DIST += src/modules/clock/module.desktop \
src/modules/clock/e-module-clock.edj
if USE_MODULE_CLOCK
clockdir = $(MDIR)/clock
clock_DATA = src/modules/clock/e-module-clock.edj \
src/modules/clock/module.desktop
clockpkgdir = $(MDIR)/clock/$(MODULE_ARCH)
clockpkg_LTLIBRARIES = src/modules/clock/module.la
src_modules_clock_module_la_LIBADD = $(MOD_LIBS)
src_modules_clock_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_clock_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_clock_module_la_SOURCES = src/modules/clock/e_mod_main.h \
src/modules/clock/e_mod_main.c \
src/modules/clock/e_mod_config.c
PHONIES += clock install-clock
clock: $(clockpkg_LTLIBRARIES) $(clock_DATA)
install-clock: install-clockDATA install-clockpkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/conf/module.desktop \
src/modules/conf/e-module-conf.edj
if USE_MODULE_CONF
confdir = $(MDIR)/conf
conf_DATA = src/modules/conf/e-module-conf.edj \
src/modules/conf/module.desktop
confpkgdir = $(MDIR)/conf/$(MODULE_ARCH)
confpkg_LTLIBRARIES = src/modules/conf/module.la
src_modules_conf_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_module_la_SOURCES = src/modules/conf/e_mod_main.c \
src/modules/conf/e_mod_main.h \
src/modules/conf/e_conf.c \
src/modules/conf/e_mod_config.c
PHONIES += conf install-conf
conf: $(confpkg_LTLIBRARIES) $(conf_DATA)
install-conf: install-confDATA install-confpkgLTLIBRARIES
endif

View File

@ -1,25 +0,0 @@
EXTRA_DIST += src/modules/conf_applications/module.desktop \
src/modules/conf_applications/e-module-conf_applications.edj
if USE_MODULE_CONF_APPLICATIONS
conf_applicationsdir = $(MDIR)/conf_applications
conf_applications_DATA = src/modules/conf_applications/e-module-conf_applications.edj \
src/modules/conf_applications/module.desktop
conf_applicationspkgdir = $(MDIR)/conf_applications/$(MODULE_ARCH)
conf_applicationspkg_LTLIBRARIES = src/modules/conf_applications/module.la
src_modules_conf_applications_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_applications_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_applications_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_applications_module_la_SOURCES = src/modules/conf_applications/e_mod_main.c \
src/modules/conf_applications/e_mod_main.h \
src/modules/conf_applications/e_int_config_apps.c \
src/modules/conf_applications/e_int_config_defapps.c \
src/modules/conf_applications/e_int_config_deskenv.c \
src/modules/conf_applications/e_int_config_apps_personal.c
PHONIES += conf_applications install-conf_applications
conf_applications: $(conf_applicationspkg_LTLIBRARIES) $(conf_applications_DATA)
install-conf_applications: install-conf_applicationsDATA install-conf_applicationspkgLTLIBRARIES
endif

View File

@ -1,24 +0,0 @@
EXTRA_DIST += src/modules/conf_bindings/module.desktop
if USE_MODULE_CONF_BINDINGS
conf_bindingsdir = $(MDIR)/conf_bindings
conf_bindings_DATA = src/modules/conf_bindings/module.desktop
conf_bindingspkgdir = $(MDIR)/conf_bindings/$(MODULE_ARCH)
conf_bindingspkg_LTLIBRARIES = src/modules/conf_bindings/module.la
src_modules_conf_bindings_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_bindings_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_bindings_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_bindings_module_la_SOURCES = src/modules/conf_bindings/e_mod_main.c \
src/modules/conf_bindings/e_mod_main.h \
src/modules/conf_bindings/e_int_config_keybindings.c \
src/modules/conf_bindings/e_int_config_mousebindings.c \
src/modules/conf_bindings/e_int_config_edgebindings.c \
src/modules/conf_bindings/e_int_config_signalbindings.c \
src/modules/conf_bindings/e_int_config_acpibindings.c
PHONIES += conf_bindings install-conf_bindings
conf_bindings: $(conf_bindingspkg_LTLIBRARIES) $(conf_bindings_DATA)
install-conf_bindings: install-conf_bindingsDATA install-conf_bindingspkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/conf_dialogs/module.desktop \
src/modules/conf_dialogs/e-module-conf_dialogs.edj
if USE_MODULE_CONF_DIALOGS
conf_dialogsdir = $(MDIR)/conf_dialogs
conf_dialogs_DATA = src/modules/conf_dialogs/e-module-conf_dialogs.edj \
src/modules/conf_dialogs/module.desktop
conf_dialogspkgdir = $(MDIR)/conf_dialogs/$(MODULE_ARCH)
conf_dialogspkg_LTLIBRARIES = src/modules/conf_dialogs/module.la
src_modules_conf_dialogs_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_dialogs_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_dialogs_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_dialogs_module_la_SOURCES = src/modules/conf_dialogs/e_mod_main.c \
src/modules/conf_dialogs/e_mod_main.h \
src/modules/conf_dialogs/e_int_config_dialogs.c \
src/modules/conf_dialogs/e_int_config_profiles.c
PHONIES += conf_dialogs install-conf_dialogs
conf_dialogs: $(conf_dialogspkg_LTLIBRARIES) $(conf_dialogs_DATA)
install-conf_dialogs: install-conf_dialogsDATA install-conf_dialogspkgLTLIBRARIES
endif

View File

@ -1,25 +0,0 @@
EXTRA_DIST += src/modules/conf_display/module.desktop
if USE_MODULE_CONF_DISPLAY
conf_displaydir = $(MDIR)/conf_display
conf_display_DATA = src/modules/conf_display/module.desktop
conf_displaypkgdir = $(MDIR)/conf_display/$(MODULE_ARCH)
conf_displaypkg_LTLIBRARIES = src/modules/conf_display/module.la
src_modules_conf_display_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_display_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_display_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_display_module_la_SOURCES = src/modules/conf_display/e_mod_main.c \
src/modules/conf_display/e_mod_main.h \
src/modules/conf_display/e_int_config_screensaver.c \
src/modules/conf_display/e_int_config_dpms.c \
src/modules/conf_display/e_int_config_desklock.c \
src/modules/conf_display/e_int_config_desklock_fsel.c \
src/modules/conf_display/e_int_config_desks.c \
src/modules/conf_display/e_int_config_desk.c
PHONIES += conf_display install-conf_display
conf_display: $(conf_displaypkg_LTLIBRARIES) $(conf_display_DATA)
install-conf_display: install-conf_displayDATA install-conf_displaypkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/conf_interaction/module.desktop \
src/modules/conf_interaction/e-module-conf_interaction.edj
if USE_MODULE_CONF_INTERACTION
conf_interactiondir = $(MDIR)/conf_interaction
conf_interaction_DATA = src/modules/conf_interaction/e-module-conf_interaction.edj \
src/modules/conf_interaction/module.desktop
conf_interactionpkgdir = $(MDIR)/conf_interaction/$(MODULE_ARCH)
conf_interactionpkg_LTLIBRARIES = src/modules/conf_interaction/module.la
src_modules_conf_interaction_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_interaction_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_interaction_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_interaction_module_la_SOURCES = src/modules/conf_interaction/e_mod_main.c \
src/modules/conf_interaction/e_mod_main.h \
src/modules/conf_interaction/e_int_config_interaction.c \
src/modules/conf_interaction/e_int_config_mouse.c
PHONIES += conf_interaction install-conf_interaction
conf_interaction: $(conf_interactionpkg_LTLIBRARIES) $(conf_interaction_DATA)
install-conf_interaction: install-conf_interactionDATA install-conf_interactionpkgLTLIBRARIES
endif

View File

@ -1,22 +0,0 @@
EXTRA_DIST += src/modules/conf_intl/module.desktop
if USE_MODULE_CONF_INTL
conf_intldir = $(MDIR)/conf_intl
conf_intl_DATA = src/modules/conf_intl/module.desktop
conf_intlpkgdir = $(MDIR)/conf_intl/$(MODULE_ARCH)
conf_intlpkg_LTLIBRARIES = src/modules/conf_intl/module.la
src_modules_conf_intl_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_intl_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_intl_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_intl_module_la_SOURCES = src/modules/conf_intl/e_mod_main.c \
src/modules/conf_intl/e_mod_main.h \
src/modules/conf_intl/e_int_config_intl.c \
src/modules/conf_intl/e_int_config_imc_import.c \
src/modules/conf_intl/e_int_config_imc.c
PHONIES += conf_intl install-conf_intl
conf_intl: $(conf_intlpkg_LTLIBRARIES) $(conf_intl_DATA)
install-conf_intl: install-conf_intlDATA install-conf_intlpkgLTLIBRARIES
endif

View File

@ -1,22 +0,0 @@
EXTRA_DIST += src/modules/conf_menus/module.desktop \
src/modules/conf_menus/e-module-conf_menus.edj
if USE_MODULE_CONF_MENUS
conf_menusdir = $(MDIR)/conf_menus
conf_menus_DATA = src/modules/conf_menus/e-module-conf_menus.edj \
src/modules/conf_menus/module.desktop
conf_menuspkgdir = $(MDIR)/conf_menus/$(MODULE_ARCH)
conf_menuspkg_LTLIBRARIES = src/modules/conf_menus/module.la
src_modules_conf_menus_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_menus_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_menus_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_menus_module_la_SOURCES = src/modules/conf_menus/e_mod_main.c \
src/modules/conf_menus/e_mod_main.h \
src/modules/conf_menus/e_int_config_menus.c
PHONIES += conf_menus install-conf_menus
conf_menus: $(conf_menuspkg_LTLIBRARIES) $(conf_menus_DATA)
install-conf_menus: install-conf_menusDATA install-conf_menuspkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/conf_paths/module.desktop \
src/modules/conf_paths/e-module-conf_paths.edj
if USE_MODULE_CONF_PATHS
conf_pathsdir = $(MDIR)/conf_paths
conf_paths_DATA = src/modules/conf_paths/e-module-conf_paths.edj \
src/modules/conf_paths/module.desktop
conf_pathspkgdir = $(MDIR)/conf_paths/$(MODULE_ARCH)
conf_pathspkg_LTLIBRARIES = src/modules/conf_paths/module.la
src_modules_conf_paths_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_paths_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_paths_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_paths_module_la_SOURCES = src/modules/conf_paths/e_mod_main.c \
src/modules/conf_paths/e_mod_main.h \
src/modules/conf_paths/e_int_config_paths.c \
src/modules/conf_paths/e_int_config_env.c
PHONIES += conf_paths install-conf_paths
conf_paths: $(conf_pathspkg_LTLIBRARIES) $(conf_paths_DATA)
install-conf_paths: install-conf_pathsDATA install-conf_pathspkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/conf_performance/module.desktop \
src/modules/conf_performance/e-module-conf_performance.edj
if USE_MODULE_CONF_PERFORMANCE
conf_performancedir = $(MDIR)/conf_performance
conf_performance_DATA = src/modules/conf_performance/e-module-conf_performance.edj \
src/modules/conf_performance/module.desktop
conf_performancepkgdir = $(MDIR)/conf_performance/$(MODULE_ARCH)
conf_performancepkg_LTLIBRARIES = src/modules/conf_performance/module.la
src_modules_conf_performance_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_performance_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_performance_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_performance_module_la_SOURCES = src/modules/conf_performance/e_mod_main.c \
src/modules/conf_performance/e_mod_main.h \
src/modules/conf_performance/e_int_config_performance.c \
src/modules/conf_performance/e_int_config_powermanagement.c
PHONIES += conf_performance install-conf_performance
conf_performance: $(conf_performancepkg_LTLIBRARIES) $(conf_performance_DATA)
install-conf_performance: install-conf_performanceDATA install-conf_performancepkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/conf_randr/module.desktop \
src/modules/conf_randr/e-module-conf_randr.edj
if USE_MODULE_CONF_RANDR
conf_randrdir = $(MDIR)/conf_randr
conf_randr_DATA = src/modules/conf_randr/e-module-conf_randr.edj \
src/modules/conf_randr/module.desktop
conf_randrpkgdir = $(MDIR)/conf_randr/$(MODULE_ARCH)
conf_randrpkg_LTLIBRARIES = src/modules/conf_randr/module.la
src_modules_conf_randr_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_randr_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_randr_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_randr_module_la_SOURCES = src/modules/conf_randr/e_mod_main.c \
src/modules/conf_randr/e_mod_main.h \
src/modules/conf_randr/e_int_config_randr2.c \
src/modules/conf_randr/e_int_config_randr2.h
PHONIES += conf_randr install-conf_randr
conf_randr: $(conf_randrpkg_LTLIBRARIES) $(conf_randr_DATA)
install-conf_randr: install-conf_randrDATA install-conf_randrpkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/conf_shelves/module.desktop \
src/modules/conf_shelves/e-module-conf_shelves.edj
if USE_MODULE_CONF_SHELVES
conf_shelvesdir = $(MDIR)/conf_shelves
conf_shelves_DATA = src/modules/conf_shelves/e-module-conf_shelves.edj \
src/modules/conf_shelves/module.desktop
conf_shelvespkgdir = $(MDIR)/conf_shelves/$(MODULE_ARCH)
conf_shelvespkg_LTLIBRARIES = src/modules/conf_shelves/module.la
src_modules_conf_shelves_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_shelves_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_shelves_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_shelves_module_la_SOURCES = src/modules/conf_shelves/e_mod_main.c \
src/modules/conf_shelves/e_mod_main.h \
src/modules/conf_shelves/e_int_config_shelf.c \
src/modules/conf_shelves/e_int_config_shelf.h
PHONIES += conf_shelves install-conf_shelves
conf_shelves: $(conf_shelvespkg_LTLIBRARIES) $(conf_shelves_DATA)
install-conf_shelves: install-conf_shelvesDATA install-conf_shelvespkgLTLIBRARIES
endif

View File

@ -1,28 +0,0 @@
EXTRA_DIST += src/modules/conf_theme/module.desktop
if USE_MODULE_CONF_THEME
conf_themedir = $(MDIR)/conf_theme
conf_theme_DATA = src/modules/conf_theme/module.desktop
conf_themepkgdir = $(MDIR)/conf_theme/$(MODULE_ARCH)
conf_themepkg_LTLIBRARIES = src/modules/conf_theme/module.la
src_modules_conf_theme_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_theme_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_theme_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_theme_module_la_SOURCES = src/modules/conf_theme/e_mod_main.c \
src/modules/conf_theme/e_mod_main.h \
src/modules/conf_theme/e_int_config_borders.c \
src/modules/conf_theme/e_int_config_color_classes.c \
src/modules/conf_theme/e_int_config_fonts.c \
src/modules/conf_theme/e_int_config_scale.c \
src/modules/conf_theme/e_int_config_theme.c \
src/modules/conf_theme/e_int_config_theme_import.c \
src/modules/conf_theme/e_int_config_transitions.c \
src/modules/conf_theme/e_int_config_wallpaper.c \
src/modules/conf_theme/e_int_config_xsettings.c
PHONIES += conf_theme install-conf_theme
conf_theme: $(conf_themepkg_LTLIBRARIES) $(conf_theme_DATA)
install-conf_theme: install-conf_themeDATA install-conf_themepkgLTLIBRARIES
endif

View File

@ -1,25 +0,0 @@
EXTRA_DIST += src/modules/conf_window_manipulation/module.desktop \
src/modules/conf_window_manipulation/e-module-conf_window_manipulation.edj
if USE_MODULE_CONF_WINDOW_MANIPULATION
conf_window_manipulationdir = $(MDIR)/conf_window_manipulation
conf_window_manipulation_DATA = src/modules/conf_window_manipulation/module.desktop
conf_window_manipulationpkgdir = $(MDIR)/conf_window_manipulation/$(MODULE_ARCH)
conf_window_manipulationpkg_LTLIBRARIES = src/modules/conf_window_manipulation/module.la
src_modules_conf_window_manipulation_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_window_manipulation_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_window_manipulation_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_window_manipulation_module_la_SOURCES = src/modules/conf_window_manipulation/e_mod_main.c \
src/modules/conf_window_manipulation/e_mod_main.h \
src/modules/conf_window_manipulation/e_int_config_window_geometry.c \
src/modules/conf_window_manipulation/e_int_config_window_process.c \
src/modules/conf_window_manipulation/e_int_config_window_display.c \
src/modules/conf_window_manipulation/e_int_config_focus.c \
src/modules/conf_window_manipulation/e_int_config_clientlist.c
PHONIES += conf_window_manipulation install-conf_window_manipulation
conf_window_manipulation: $(conf_window_manipulationpkg_LTLIBRARIES) $(conf_window_manipulation_DATA)
install-conf_window_manipulation: install-conf_window_manipulationDATA install-conf_window_manipulationpkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/conf_window_remembers/module.desktop \
src/modules/conf_window_remembers/e-module-conf_window_remembers.edj
if USE_MODULE_CONF_WINDOW_REMEMBERS
conf_window_remembersdir = $(MDIR)/conf_window_remembers
conf_window_remembers_DATA = src/modules/conf_window_remembers/e-module-conf_window_remembers.edj \
src/modules/conf_window_remembers/module.desktop
conf_window_rememberspkgdir = $(MDIR)/conf_window_remembers/$(MODULE_ARCH)
conf_window_rememberspkg_LTLIBRARIES = src/modules/conf_window_remembers/module.la
src_modules_conf_window_remembers_module_la_LIBADD = $(MOD_LIBS)
src_modules_conf_window_remembers_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_conf_window_remembers_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_conf_window_remembers_module_la_SOURCES = \
src/modules/conf_window_remembers/e_mod_main.c \
src/modules/conf_window_remembers/e_mod_main.h \
src/modules/conf_window_remembers/e_int_config_remembers.c
PHONIES += conf_window_remembers install-conf_window_remembers
conf_window_remembers: $(conf_window_rememberspkg_LTLIBRARIES) $(conf_window_remembers_DATA)
install-conf_window_remembers: install-conf_window_remembersDATA install-conf_window_rememberspkgLTLIBRARIES
endif

View File

@ -1,26 +0,0 @@
EXTRA_DIST += src/modules/connman/module.desktop \
src/modules/connman/e-module-connman.edj
if USE_MODULE_CONNMAN
connmandir = $(MDIR)/connman
connman_DATA = src/modules/connman/e-module-connman.edj \
src/modules/connman/module.desktop
connmanpkgdir = $(MDIR)/connman/$(MODULE_ARCH)
connmanpkg_LTLIBRARIES = src/modules/connman/module.la
src_modules_connman_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_connman_module_la_SOURCES = src/modules/connman/e_mod_main.h \
src/modules/connman/e_mod_main.c \
src/modules/connman/e_mod_config.c \
src/modules/connman/e_connman.c \
src/modules/connman/agent.c \
src/modules/connman/E_Connman.h
src_modules_connman_module_la_CPPFLAGS = $(MOD_CPPFLAGS) -Wno-unused-parameter
src_modules_connman_module_la_LIBADD = $(MOD_LIBS)
PHONIES += connman install-connman
connman: $(connmanpkg_LTLIBRARIES) $(connman_DATA)
install-connman: install-connmanDATA install-connmanpkgLTLIBRARIES
endif

View File

@ -1,38 +0,0 @@
EXTRA_DIST += src/modules/cpufreq/module.desktop \
src/modules/cpufreq/e-module-cpufreq.edj
if USE_MODULE_CPUFREQ
cpufreqdir = $(MDIR)/cpufreq
cpufreq_DATA = src/modules/cpufreq/e-module-cpufreq.edj \
src/modules/cpufreq/module.desktop
cpufreqpkgdir = $(MDIR)/cpufreq/$(MODULE_ARCH)
cpufreqpkg_LTLIBRARIES = src/modules/cpufreq/module.la
src_modules_cpufreq_module_la_LIBADD = $(MOD_LIBS)
src_modules_cpufreq_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_cpufreq_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_cpufreq_module_la_SOURCES = src/modules/cpufreq/e_mod_main.h \
src/modules/cpufreq/e_mod_main.c \
src/modules/cpufreq/e_mod_config.c
src_modules_cpufreq_freqsetdir = $(cpufreqpkgdir)
src_modules_cpufreq_freqset_PROGRAMS = src/modules/cpufreq/freqset
src_modules_cpufreq_freqset_SOURCES = src/modules/cpufreq/freqset.c
src_modules_cpufreq_freqset_CPPFLAGS = $(MOD_CPPFLAGS) @e_cflags@ @SUID_CFLAGS@
src_modules_cpufreq_freqset_LDFLAGS = @SUID_LDFLAGS@
cpufreq_setuid_root_mode = a=rx,u+xs
cpufreq_setuid_root_user = root
cpufreq-install-data-hook:
@chown $(cpufreq_setuid_root_user) $(DESTDIR)$(src_modules_cpufreq_freqsetdir)/freqset$(EXEEXT) || true
@chmod $(cpufreq_setuid_root_mode) $(DESTDIR)$(src_modules_cpufreq_freqsetdir)/freqset$(EXEEXT) || true
INSTALL_DATA_HOOKS += cpufreq-install-data-hook
PHONIES += cpufreq install-cpufreq
cpufreq: $(cpufreqpkg_LTLIBRARIES) $(cpufreq_DATA) $(src_modules_cpufreq_freqset_PROGRAMS)
install-cpufreq: install-cpufreqDATA install-cpufreqpkgLTLIBRARIES install-src_modules_cpufreq_freqsetPROGRAMS
endif

View File

@ -1,60 +0,0 @@
EXTRA_DIST += src/modules/everything/module.desktop \
src/modules/everything/e-module-everything.edj \
src/modules/everything/e-module-everything-start.edj
if USE_MODULE_EVERYTHING
everythingdir = $(MDIR)/everything
everything_DATA = src/modules/everything/e-module-everything.edj \
src/modules/everything/e-module-everything-start.edj \
src/modules/everything/module.desktop
everythingpkgdir = $(MDIR)/everything/$(MODULE_ARCH)
everythingpkg_LTLIBRARIES = src/modules/everything/module.la
EVRYHEADERS = src/modules/everything/evry_api.h \
src/modules/everything/evry_types.h
src_modules_everything_module_la_LIBADD = $(MOD_LIBS)
src_modules_everything_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_everything_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_everything_module_la_SOURCES = $(EVRYHEADERS) \
src/modules/everything/e_mod_main.c \
src/modules/everything/e_mod_main.h \
src/modules/everything/evry.c \
src/modules/everything/evry_config.c \
src/modules/everything/evry_util.c \
src/modules/everything/evry_history.c \
src/modules/everything/evry_plugin.c \
src/modules/everything/evry_plug_aggregator.c \
src/modules/everything/evry_plug_actions.c \
src/modules/everything/evry_view.c \
src/modules/everything/evry_view_tabs.c \
src/modules/everything/evry_view_help.c \
src/modules/everything/evry_plug_text.c \
src/modules/everything/evry_plug_clipboard.c \
src/modules/everything/evry_plug_collection.c \
src/modules/everything/evry_gadget.c \
src/modules/everything/md5.c \
src/modules/everything/md5.h \
src/modules/everything/evry_plug_apps.c \
src/modules/everything/evry_plug_files.c \
src/modules/everything/evry_plug_windows.c \
src/modules/everything/evry_plug_settings.c \
src/modules/everything/evry_plug_calc.c
everything_headersdir = $(pkgincludedir)
dist_everything_headers_DATA = $(EVRYHEADERS)
if HAVE_FREEBSD
everything_pkgconfigdir = $(libdir)data/pkgconfig
else
everything_pkgconfigdir = $(libdir)/pkgconfig
endif
everything_pkgconfig_DATA = src/modules/everything/everything.pc
DISTCLEANFILES += src/modules/everything/everything.pc
PHONIES += everything install-everything
everything: $(everythingpkg_LTLIBRARIES) $(everything_DATA)
install-everything: install-everythingDATA install-everythingpkgLTLIBRARIES install-everything_pkgconfigDATA
endif

View File

@ -1,28 +0,0 @@
EXTRA_DIST += src/modules/fileman/module.desktop \
src/modules/fileman/e-module-fileman.edj
if USE_MODULE_FILEMAN
filemandir = $(MDIR)/fileman
fileman_DATA = src/modules/fileman/e-module-fileman.edj \
src/modules/fileman/module.desktop
filemanpkgdir = $(MDIR)/fileman/$(MODULE_ARCH)
filemanpkg_LTLIBRARIES = src/modules/fileman/module.la
src_modules_fileman_module_la_LIBADD = $(MOD_LIBS)
src_modules_fileman_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_fileman_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_fileman_module_la_SOURCES = src/modules/fileman/e_mod_main.c \
src/modules/fileman/e_mod_main.h \
src/modules/fileman/e_fwin.c \
src/modules/fileman/e_fwin_nav.c \
src/modules/fileman/e_mod_config.c \
src/modules/fileman/e_int_config_mime.c \
src/modules/fileman/e_int_config_mime_edit.c \
src/modules/fileman/e_mod_dbus.c \
src/modules/fileman/e_mod_menu.c
PHONIES += fileman install-fileman
fileman: $(filemanpkg_LTLIBRARIES) $(fileman_DATA)
install-fileman: install-filemanDATA install-filemanpkgLTLIBRARIES
endif

View File

@ -1,20 +0,0 @@
EXTRA_DIST += src/modules/fileman_opinfo/module.desktop \
src/modules/fileman_opinfo/e-module-fileman_opinfo.edj
if USE_MODULE_FILEMAN_OPINFO
fileman_opinfodir = $(MDIR)/fileman_opinfo
fileman_opinfo_DATA = src/modules/fileman_opinfo/e-module-fileman_opinfo.edj \
src/modules/fileman_opinfo/module.desktop
fileman_opinfopkgdir = $(MDIR)/fileman_opinfo/$(MODULE_ARCH)
fileman_opinfopkg_LTLIBRARIES = src/modules/fileman_opinfo/module.la
src_modules_fileman_opinfo_module_la_LIBADD = $(MOD_LIBS)
src_modules_fileman_opinfo_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_fileman_opinfo_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_fileman_opinfo_module_la_SOURCES = src/modules/fileman_opinfo/e_mod_main.c
PHONIES += fileman_opinfo install-fileman_opinfo
fileman_opinfo: $(fileman_opinfopkg_LTLIBRARIES) $(fileman_opinfo_DATA)
install-fileman_opinfo: install-fileman_opinfoDATA install-fileman_opinfopkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/gadman/module.desktop \
src/modules/gadman/e-module-gadman.edj
if USE_MODULE_GADMAN
gadmandir = $(MDIR)/gadman
gadman_DATA = src/modules/gadman/e-module-gadman.edj \
src/modules/gadman/module.desktop
gadmanpkgdir = $(MDIR)/gadman/$(MODULE_ARCH)
gadmanpkg_LTLIBRARIES = src/modules/gadman/module.la
src_modules_gadman_module_la_LIBADD = $(MOD_LIBS)
src_modules_gadman_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_gadman_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_gadman_module_la_SOURCES = src/modules/gadman/e_mod_main.c \
src/modules/gadman/e_mod_config.c \
src/modules/gadman/e_mod_gadman.c \
src/modules/gadman/e_mod_gadman.h
PHONIES += gadman install-gadman
gadman: $(gadmanpkg_LTLIBRARIES) $(gadman_DATA)
install-gadman: install-gadmanDATA install-gadmanpkgLTLIBRARIES
endif

View File

@ -1,39 +0,0 @@
EXTRA_DIST += src/modules/geolocation/module.desktop \
src/modules/geolocation/e-module-geolocation.edj \
src/modules/geolocation/org.freedesktop.GeoClue2.xml
if USE_MODULE_GEOLOCATION
geolocationdir = $(MDIR)/geolocation
geolocation_DATA = src/modules/geolocation/e-module-geolocation.edj \
src/modules/geolocation/module.desktop
geolocationpkgdir = $(MDIR)/geolocation/$(MODULE_ARCH)
geolocationpkg_LTLIBRARIES = src/modules/geolocation/module.la
GEO_GEN = \
src/modules/geolocation/eldbus_geo_clue2_client.c \
src/modules/geolocation/eldbus_geo_clue2_client.h \
src/modules/geolocation/eldbus_geo_clue2_location.c \
src/modules/geolocation/eldbus_geo_clue2_location.h \
src/modules/geolocation/eldbus_geo_clue2_manager.c \
src/modules/geolocation/eldbus_geo_clue2_manager.h \
src/modules/geolocation/eldbus_utils.h
MAINTAINERCLEANFILES += $(GEO_GEN)
src/modules/geolocation/e_mod_main.c: $(GEO_GEN)
$(GEO_GEN): src/modules/geolocation/org.freedesktop.GeoClue2.xml
@cd $(top_builddir)/src/modules/geolocation && \
@eldbus_codegen@ $(abs_top_srcdir)/src/modules/geolocation/org.freedesktop.GeoClue2.xml
src_modules_geolocation_module_la_LIBADD = $(MOD_LIBS)
src_modules_geolocation_module_la_CPPFLAGS = -I$(top_builddir)/src/modules/geolocation $(MOD_CPPFLAGS)
src_modules_geolocation_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_geolocation_module_la_SOURCES = \
src/modules/geolocation/e_mod_main.c \
$(GEO_GEN)
PHONIES += geolocation install-geolocation
geolocation: $(geolocationpkg_LTLIBRARIES) $(geolocation_DATA)
install-geolocation: install-geolocationDATA install-geolocationpkgLTLIBRARIES
endif

View File

@ -1,22 +0,0 @@
EXTRA_DIST += src/modules/ibar/module.desktop \
src/modules/ibar/e-module-ibar.edj
if USE_MODULE_IBAR
ibardir = $(MDIR)/ibar
ibar_DATA = src/modules/ibar/e-module-ibar.edj \
src/modules/ibar/module.desktop
ibarpkgdir = $(MDIR)/ibar/$(MODULE_ARCH)
ibarpkg_LTLIBRARIES = src/modules/ibar/module.la
src_modules_ibar_module_la_LIBADD = $(MOD_LIBS)
src_modules_ibar_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_ibar_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_ibar_module_la_SOURCES = src/modules/ibar/e_mod_main.c \
src/modules/ibar/e_mod_main.h \
src/modules/ibar/e_mod_config.c
PHONIES += ibar install-ibar
ibar: $(ibarpkg_LTLIBRARIES) $(ibar_DATA)
install-ibar: install-ibarDATA install-ibarpkgLTLIBRARIES
endif

View File

@ -1,22 +0,0 @@
EXTRA_DIST += src/modules/ibox/module.desktop \
src/modules/ibox/e-module-ibox.edj
if USE_MODULE_IBOX
iboxdir = $(MDIR)/ibox
ibox_DATA = src/modules/ibox/e-module-ibox.edj \
src/modules/ibox/module.desktop
iboxpkgdir = $(MDIR)/ibox/$(MODULE_ARCH)
iboxpkg_LTLIBRARIES = src/modules/ibox/module.la
src_modules_ibox_module_la_LIBADD = $(MOD_LIBS)
src_modules_ibox_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_ibox_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_ibox_module_la_SOURCES = src/modules/ibox/e_mod_main.c \
src/modules/ibox/e_mod_main.h \
src/modules/ibox/e_mod_config.c
PHONIES += ibox install-ibox
ibox: $(iboxpkg_LTLIBRARIES) $(ibox_DATA)
install-ibox: install-iboxDATA install-iboxpkgLTLIBRARIES
endif

View File

@ -1,20 +0,0 @@
if USE_MODULE_LOKKER
lokkerdir = $(MDIR)/lokker
##lokker_DATA = \
##src/modules/lokker/e-module-lokker.edj
lokkerpkgdir = $(MDIR)/lokker/$(MODULE_ARCH)
lokkerpkg_LTLIBRARIES = src/modules/lokker/module.la
src_modules_lokker_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_lokker_module_la_LIBADD = $(MOD_LIBS)
src_modules_lokker_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_lokker_module_la_SOURCES = src/modules/lokker/e_mod_main.c \
src/modules/lokker/lokker.c \
src/modules/lokker/e_mod_main.h
PHONIES += lokker install-lokker
lokker: $(lokkerpkg_LTLIBRARIES) #$(lokker_DATA)
install-lokker: install-lokkerpkgLTLIBRARIES #install-lokkerDATA
endif

View File

@ -1,24 +0,0 @@
EXTRA_DIST += src/modules/luncher/module.desktop \
src/modules/luncher/e-module-luncher.edj
if USE_MODULE_IBAR
luncherdir = $(MDIR)/luncher
luncher_DATA = src/modules/luncher/e-module-luncher.edj \
src/modules/luncher/module.desktop
luncherpkgdir = $(MDIR)/luncher/$(MODULE_ARCH)
luncherpkg_LTLIBRARIES = src/modules/luncher/module.la
src_modules_luncher_module_la_LIBADD = $(MOD_LIBS)
src_modules_luncher_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_luncher_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_luncher_module_la_SOURCES = src/modules/luncher/mod.c \
src/modules/luncher/luncher.h \
src/modules/luncher/bar.c \
src/modules/luncher/grid.c \
src/modules/luncher/config.c
PHONIES += luncher install-luncher
luncher: $(luncherpkg_LTLIBRARIES) $(luncher_DATA)
install-luncher: install-luncherDATA install-luncherpkgLTLIBRARIES
endif

View File

@ -1,53 +0,0 @@
EXTRA_DIST += src/modules/mixer/module.desktop \
src/modules/mixer/e-module-mixer.edj \
src/modules/mixer/emixer.png \
src/modules/mixer/emixer.desktop
if USE_MODULE_MIXER
mixerdir = $(MDIR)/mixer
mixer_DATA = src/modules/mixer/e-module-mixer.edj \
src/modules/mixer/module.desktop
mixerpkgdir = $(MDIR)/mixer/$(MODULE_ARCH)
mixerpkg_LTLIBRARIES = src/modules/mixer/module.la
emixerlib = src/modules/mixer/lib/emix.c src/modules/mixer/lib/emix.h
if HAVE_ALSA
emixerlib += src/modules/mixer/lib/backends/alsa/alsa.c
endif
if HAVE_PULSE
emixerlib += src/modules/mixer/lib/backends/pulseaudio/pulse_ml.c
emixerlib += src/modules/mixer/lib/backends/pulseaudio/pulse.c
endif
src_modules_mixer_emixerdir = $(mixerpkgdir)
bin_PROGRAMS += src/modules/mixer/emixer
src_modules_mixer_emixer_SOURCES = src/modules/mixer/emixer.c \
$(emixerlib)
src_modules_mixer_emixer_CPPFLAGS = $(MOD_CPPFLAGS) -I$(top_srcdir)/src/modules/mixer/lib -DEMIXER_BUILD
src_modules_mixer_emixer_LDADD = $(MOD_LIBS) @PULSE_LIBS@ @ALSA_LIBS@
src_modules_mixer_module_la_CPPFLAGS = $(MOD_CPPFLAGS) @e_cflags@ @ALSA_CFLAGS@ @PULSE_CFLAGS@ -I$(top_srcdir)/src/modules/mixer/lib
src_modules_mixer_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_mixer_module_la_SOURCES = src/modules/mixer/e_mod_main.c \
src/modules/mixer/e_mod_main.h \
src/modules/mixer/e_mod_config.c \
src/modules/mixer/e_mod_config.h \
src/modules/mixer/gadget/mixer.h \
src/modules/mixer/gadget/mixer.c \
src/modules/mixer/gadget/mod.c \
$(emixerlib)
src_modules_mixer_module_la_LIBADD = $(MOD_LIBS) @PULSE_LIBS@ @ALSA_LIBS@
PHONIES += mixer install-mixer
mixer: $(mixerpkg_LTLIBRARIES) $(mixer_DATA)
install-mixer: install-mixerDATA install-mixerpkgLTLIBRARIES
desktopfiledir = $(datadir)/applications
desktopfile_DATA = src/modules/mixer/emixer.desktop
iconsdir= $(datadir)/pixmaps
icons_DATA = src/modules/mixer/emixer.png
endif

View File

@ -1,28 +0,0 @@
EXTRA_DIST += src/modules/msgbus/module.desktop \
src/modules/msgbus/e-module-msgbus.edj
if USE_MODULE_MSGBUS
msgbusdir = $(MDIR)/msgbus
msgbus_DATA = src/modules/msgbus/e-module-msgbus.edj \
src/modules/msgbus/module.desktop
msgbuspkgdir = $(MDIR)/msgbus/$(MODULE_ARCH)
msgbuspkg_LTLIBRARIES = src/modules/msgbus/module.la
src_modules_msgbus_module_la_LIBADD = $(MOD_LIBS)
src_modules_msgbus_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_msgbus_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_msgbus_module_la_SOURCES = \
src/modules/msgbus/e_mod_main.h \
src/modules/msgbus/e_mod_main.c \
src/modules/msgbus/msgbus_audit.c \
src/modules/msgbus/msgbus_desktop.c \
src/modules/msgbus/msgbus_lang.c \
src/modules/msgbus/msgbus_module.c \
src/modules/msgbus/msgbus_profile.c \
src/modules/msgbus/msgbus_window.c
PHONIES += msgbus install-msgbus
msgbus: $(msgbuspkg_LTLIBRARIES) $(msgbus_DATA)
install-msgbus: install-msgbusDATA install-msgbuspkgLTLIBRARIES
endif

View File

@ -1,41 +0,0 @@
EXTRA_DIST += src/modules/music-control/module.desktop \
src/modules/music-control/e-module-music-control.edj \
src/modules/music-control/introspect.xml
if USE_MODULE_MUSIC_CONTROL
music_controldir = $(MDIR)/music-control
music_control_DATA = src/modules/music-control/module.desktop \
src/modules/music-control/e-module-music-control.edj
MUSIC_GEN = \
src/modules/music-control/eldbus_media_player2_player.c \
src/modules/music-control/eldbus_media_player2_player.h \
src/modules/music-control/eldbus_mpris_media_player2.c \
src/modules/music-control/eldbus_mpris_media_player2.h \
src/modules/music-control/eldbus_utils.h
MAINTAINERCLEANFILES += $(MUSIC_GEN)
src/modules/music-control/e_mod_main.c: $(MUSIC_GEN)
$(MUSIC_GEN): src/modules/music-control/introspect.xml
@cd $(abs_top_srcdir)/src/modules/music-control && \
@eldbus_codegen@ $(abs_top_srcdir)/src/modules/music-control/introspect.xml
music_controlpkgdir = $(MDIR)/music-control/$(MODULE_ARCH)
music_controlpkg_LTLIBRARIES = src/modules/music-control/module.la
src_modules_music_control_module_la_DEPENDENCIES = $(MDEPENDENCIES)
src_modules_music_control_module_la_CPPFLAGS = $(MOD_CPPFLAGS) -Wno-unused-parameter
src_modules_music_control_module_la_LIBADD = $(MOD_LIBS)
src_modules_music_control_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_music_control_module_la_SOURCES = \
src/modules/music-control/e_mod_main.h \
src/modules/music-control/e_mod_main.c \
src/modules/music-control/private.h \
src/modules/music-control/ui.c \
$(MUSIC_GEN)
PHONIES += music-control install-music-control
music-control: $(music_controlpkg_LTLIBRARIES) $(music_control_DATA)
install-music-control: install-music_controlDATA install-music_controlpkgLTLIBRARIES
endif

View File

@ -1,24 +0,0 @@
EXTRA_DIST += src/modules/notification/module.desktop \
src/modules/notification/e-module-notification.edj
if USE_MODULE_NOTIFICATION
notificationdir = $(MDIR)/notification
notification_DATA = src/modules/notification/e-module-notification.edj \
src/modules/notification/module.desktop
notificationpkgdir = $(MDIR)/notification/$(MODULE_ARCH)
notificationpkg_LTLIBRARIES = src/modules/notification/module.la
src_modules_notification_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_notification_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_notification_module_la_SOURCES = src/modules/notification/e_mod_main.h \
src/modules/notification/e_mod_main.c \
src/modules/notification/e_mod_config.c \
src/modules/notification/e_mod_popup.c
src_modules_notification_module_la_LIBADD = $(MOD_LIBS)
PHONIES += notification install-notification
notification: $(notificationpkg_LTLIBRARIES) $(notification_DATA)
install-notification: install-notificationDATA install-notificationpkgLTLIBRARIES
endif

View File

@ -1,26 +0,0 @@
EXTRA_DIST += src/modules/packagekit/module.desktop \
src/modules/packagekit/e-module-packagekit.edj
if USE_MODULE_PACKAGEKIT
packagekitdir = $(MDIR)/packagekit
packagekit_DATA = src/modules/packagekit/e-module-packagekit.edj \
src/modules/packagekit/module.desktop
packagekitpkgdir = $(MDIR)/packagekit/$(MODULE_ARCH)
packagekitpkg_LTLIBRARIES = src/modules/packagekit/module.la
src_modules_packagekit_module_la_LIBADD = $(MOD_LIBS)
src_modules_packagekit_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_packagekit_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_packagekit_module_la_SOURCES = \
src/modules/packagekit/e_mod_main.c \
src/modules/packagekit/e_mod_main.h \
src/modules/packagekit/e_mod_config.c \
src/modules/packagekit/e_mod_config.h \
src/modules/packagekit/e_mod_packagekit.c \
src/modules/packagekit/e_mod_packagekit.h
PHONIES += packagekit install-packagekit
packagekit: $(packagekitpkg_LTLIBRARIES) $(packagekit_DATA)
install-packagekit: install-packagekitDATA install-packagekitpkgLTLIBRARIES
endif

View File

@ -1,25 +0,0 @@
EXTRA_DIST += src/modules/pager/module.desktop \
src/modules/pager/e-module-pager.edj
if USE_MODULE_PAGER
pagerdir = $(MDIR)/pager
pager_DATA = src/modules/pager/e-module-pager.edj \
src/modules/pager/module.desktop
pagerpkgdir = $(MDIR)/pager/$(MODULE_ARCH)
pagerpkg_LTLIBRARIES = src/modules/pager/module.la
src_modules_pager_module_la_LIBADD = $(MOD_LIBS)
src_modules_pager_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_pager_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_pager_module_la_SOURCES = src/modules/pager/e_mod_main.h \
src/modules/pager/e_mod_main.c \
src/modules/pager/e_mod_config.c \
src/modules/pager/gadget/pager.h \
src/modules/pager/gadget/pager.c \
src/modules/pager/gadget/mod.c \
src/modules/pager/gadget/config.c
PHONIES += pager install-pager
pager: $(pagerpkg_LTLIBRARIES) $(pager_DATA)
install-pager: install-pagerDATA install-pagerpkgLTLIBRARIES
endif

View File

@ -1,22 +0,0 @@
EXTRA_DIST += src/modules/pager_plain/module.desktop \
src/modules/pager_plain/e-module-pager_plain.edj
if USE_MODULE_PAGER_PLAIN
pager_plaindir = $(MDIR)/pager_plain
pager_plain_DATA = src/modules/pager_plain/e-module-pager_plain.edj \
src/modules/pager_plain/module.desktop
pager_plainpkgdir = $(MDIR)/pager_plain/$(MODULE_ARCH)
pager_plainpkg_LTLIBRARIES = src/modules/pager_plain/module.la
src_modules_pager_plain_module_la_LIBADD = $(MOD_LIBS)
src_modules_pager_plain_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_pager_plain_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_pager_plain_module_la_SOURCES = src/modules/pager_plain/e_mod_main.h \
src/modules/pager_plain/e_mod_main.c \
src/modules/pager_plain/e_mod_config.c
PHONIES += pager-plain install-pager-plain
pager_plain: $(pager_plainpkg_LTLIBRARIES) $(pager_plain_DATA)
install-pager-plain: install-pager-plainDATA install-pager-plainpkgLTLIBRARIES
endif

View File

@ -1,25 +0,0 @@
physicsdir = $(MDIR)/physics
physics_DATA = src/modules/physics/e-module-physics.edj \
src/modules/physics/module.desktop
src_modules_physics_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_physics_module_la_CPPFLAGS += @EPHYSICS_CFLAGS@
physicspkgdir = $(MDIR)/physics/$(MODULE_ARCH)
physicspkg_LTLIBRARIES = src/modules/physics/module.la
src_modules_physics_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_physics_module_la_SOURCES = src/modules/physics/e_mod_main.c \
src/modules/physics/e_mod_main.h \
src/modules/physics/e_mod_config.c \
src/modules/physics/e_mod_physics_cfdata.c \
src/modules/physics/e_mod_physics_cfdata.h \
src/modules/physics/e_mod_physics.c \
src/modules/physics/e_mod_physics.h
src_modules_physics_module_la_LIBADD = $(MOD_LIBS) @EPHYSICS_LIBS@
PHONIES += physics install-physics
physics: $(physicspkg_LTLIBRARIES) $(physics_DATA)
install-physics: install-physicsDATA install-physicspkgLTLIBRARIES

View File

@ -1,25 +0,0 @@
EXTRA_DIST += src/modules/quickaccess/module.desktop \
src/modules/quickaccess/e-module-quickaccess.edj
if USE_MODULE_QUICKACCESS
quickaccessdir = $(MDIR)/quickaccess
quickaccess_DATA = src/modules/quickaccess/e-module-quickaccess.edj \
src/modules/quickaccess/module.desktop
quickaccesspkgdir = $(MDIR)/quickaccess/$(MODULE_ARCH)
quickaccesspkg_LTLIBRARIES = src/modules/quickaccess/module.la
src_modules_quickaccess_module_la_LIBADD = $(MOD_LIBS)
src_modules_quickaccess_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_quickaccess_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_quickaccess_module_la_SOURCES = src/modules/quickaccess/e_mod_main.c \
src/modules/quickaccess/e_mod_main.h \
src/modules/quickaccess/e_mod_config.c \
src/modules/quickaccess/e_mod_quickaccess.c \
src/modules/quickaccess/e_quickaccess_bindings.c \
src/modules/quickaccess/e_quickaccess_db.c
PHONIES += quickaccess install-quickaccess
quickaccess: $(quickaccesspkg_LTLIBRARIES) $(quickaccess_DATA)
install-quickaccess: install-quickaccessDATA install-quickaccesspkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/shot/module.desktop \
src/modules/shot/e-module-shot.edj
if USE_MODULE_SHOT
shotdir = $(MDIR)/shot
shot_DATA = src/modules/shot/e-module-shot.edj \
src/modules/shot/module.desktop
shotpkgdir = $(MDIR)/shot/$(MODULE_ARCH)
shotpkg_LTLIBRARIES = src/modules/shot/module.la
nodist_src_modules_shot_module_la_SOURCES =
src_modules_shot_module_la_LIBADD = $(MOD_LIBS) @WAYLAND_LIBS@
src_modules_shot_module_la_CPPFLAGS = \
$(MOD_CPPFLAGS) @WAYLAND_CFLAGS@ -I$(top_builddir)/src/modules/shot
src_modules_shot_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_shot_module_la_SOURCES = \
src/modules/shot/e_mod_main.c
PHONIES += shot install-shot
shot: $(shotpkg_LTLIBRARIES) $(shot_DATA)
install-shot: install-shotDATA install-shotpkgLTLIBRARIES
endif

View File

@ -1,22 +0,0 @@
EXTRA_DIST += src/modules/start/module.desktop \
src/modules/start/e-module-start.edj
if USE_MODULE_START
startdir = $(MDIR)/start
start_DATA = src/modules/start/e-module-start.edj \
src/modules/start/module.desktop
startpkgdir = $(MDIR)/start/$(MODULE_ARCH)
startpkg_LTLIBRARIES = src/modules/start/module.la
src_modules_start_module_la_LIBADD = $(MOD_LIBS)
src_modules_start_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_start_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_start_module_la_SOURCES = \
src/modules/start/e_mod_main.c \
src/modules/start/start.c
PHONIES += start install-start
start: $(startpkg_LTLIBRARIES) $(start_DATA)
install-start: install-startDATA install-startpkgLTLIBRARIES
endif

View File

@ -1,24 +0,0 @@
EXTRA_DIST += src/modules/syscon/module.desktop \
src/modules/syscon/e-module-syscon.edj
if USE_MODULE_SYSCON
syscondir = $(MDIR)/syscon
syscon_DATA = src/modules/syscon/e-module-syscon.edj \
src/modules/syscon/module.desktop
sysconpkgdir = $(MDIR)/syscon/$(MODULE_ARCH)
sysconpkg_LTLIBRARIES = src/modules/syscon/module.la
src_modules_syscon_module_la_LIBADD = $(MOD_LIBS)
src_modules_syscon_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_syscon_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_syscon_module_la_SOURCES = src/modules/syscon/e_mod_main.c \
src/modules/syscon/e_mod_main.h \
src/modules/syscon/e_int_config_syscon.c \
src/modules/syscon/e_syscon.c \
src/modules/syscon/e_syscon_gadget.c
PHONIES += syscon install-syscon
syscon: $(sysconpkg_LTLIBRARIES) $(syscon_DATA)
install-syscon: install-sysconDATA install-sysconpkgLTLIBRARIES
endif

View File

@ -1,105 +0,0 @@
EXTRA_DIST += src/modules/sysinfo/module.desktop \
src/modules/sysinfo/e-module-sysinfo.edj
if USE_MODULE_SYSINFO
sysinfodir = $(MDIR)/sysinfo
sysinfo_DATA = src/modules/sysinfo/e-module-sysinfo.edj \
src/modules/sysinfo/module.desktop
sysinfopkgdir = $(MDIR)/sysinfo/$(MODULE_ARCH)
sysinfopkg_LTLIBRARIES = src/modules/sysinfo/module.la
src_modules_sysinfo_module_la_LIBADD = $(MOD_LIBS)
src_modules_sysinfo_module_la_CPPFLAGS = $(MOD_CPPFLAGS) -Wall -Wextra -Wshadow
src_modules_sysinfo_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_sysinfo_module_la_SOURCES = src/modules/sysinfo/mod.c \
src/modules/sysinfo/sysinfo.h \
src/modules/sysinfo/batman/batman.h \
src/modules/sysinfo/batman/batman.c \
src/modules/sysinfo/batman/batman_fallback.c \
src/modules/sysinfo/batman/batman_config.c \
src/modules/sysinfo/thermal/thermal.h \
src/modules/sysinfo/thermal/thermal.c \
src/modules/sysinfo/thermal/thermal_config.c \
src/modules/sysinfo/thermal/thermal_fallback.c \
src/modules/sysinfo/cpuclock/cpuclock.h \
src/modules/sysinfo/cpuclock/cpuclock.c \
src/modules/sysinfo/cpuclock/cpuclock_config.c \
src/modules/sysinfo/cpumonitor/cpumonitor.h \
src/modules/sysinfo/cpumonitor/cpumonitor.c \
src/modules/sysinfo/cpumonitor/cpumonitor_config.c \
src/modules/sysinfo/cpumonitor/cpumonitor_proc.c \
src/modules/sysinfo/memusage/memusage.h \
src/modules/sysinfo/memusage/memusage.c \
src/modules/sysinfo/memusage/memusage_config.c \
src/modules/sysinfo/memusage/memusage_proc.c \
src/modules/sysinfo/netstatus/netstatus.h \
src/modules/sysinfo/netstatus/netstatus.c \
src/modules/sysinfo/netstatus/netstatus_config.c \
src/modules/sysinfo/netstatus/netstatus_proc.c \
src/modules/sysinfo/sysinfo.c
if HAVE_EEZE
src_modules_sysinfo_module_la_SOURCES += src/modules/sysinfo/batman/batman_udev.c \
src/modules/sysinfo/thermal/thermal_udev.c
else
if HAVE_OPENBSD
src_modules_sysinfo_module_la_SOURCES += src/modules/sysinfo/batman/batman_sysctl.c \
src/modules/sysinfo/thermal/thermal_sysctl.c \
src/modules/sysinfo/cpuclock/cpuclock_sysctl.c \
src/modules/sysinfo/netstatus/netstatus_sysctl.c \
src/modules/sysinfo/cpumonitor/cpumonitor_sysctl.c \
src/modules/sysinfo/memusage/memusage_sysctl.c
else
if HAVE_NETBSD
src_modules_sysinfo_module_la_SOURCES += src/modules/sysinfo/batman/batman_sysctl.c \
src/modules/sysinfo/thermal/thermal_sysctl.c \
src/modules/sysinfo/cpuclock/cpuclock_sysctl.c \
src/modules/sysinfo/netstatus/netstatus_sysctl.c \
src/modules/sysinfo/cpumonitor/cpumonitor_sysctl.c \
src/modules/sysinfo/memusage/memusage_sysctl.c
else
if HAVE_DRAGONFLY
src_modules_sysinfo_module_la_SOURCES += src/modules/sysinfo/batman/batman_sysctl.c \
src/modules/sysinfo/thermal/thermal_sysctl.c \
src/modules/sysinfo/cpuclock/cpuclock_sysctl.c \
src/modules/sysinfo/netstatus/netstatus_sysctl.c \
src/modules/sysinfo/cpumonitor/cpumonitor_sysctl.c \
src/modules/sysinfo/memusage/memusage_sysctl.c
else
if HAVE_FREEBSD
src_modules_sysinfo_module_la_SOURCES += src/modules/sysinfo/batman/batman_sysctl.c \
src/modules/sysinfo/thermal/thermal_sysctl.c \
src/modules/sysinfo/cpuclock/cpuclock_sysctl.c \
src/modules/sysinfo/netstatus/netstatus_sysctl.c \
src/modules/sysinfo/cpumonitor/cpumonitor_sysctl.c \
src/modules/sysinfo/memusage/memusage_sysctl.c
else
src_modules_sysinfo_module_la_SOURCES += src/modules/sysinfo/batman/batman_upower.c \
src/modules/sysinfo/thermal/thermal_sysctl.c \
src/modules/sysinfo/cpuclock/cpuclock_sysctl.c
endif
endif
endif
endif
endif
src_modules_sysinfo_sysfsfreqdir = $(sysinfopkgdir)
src_modules_sysinfo_sysfsfreq_PROGRAMS = src/modules/sysinfo/cpuclock/cpuclock_sysfs
src_modules_sysinfo_cpuclock_cpuclock_sysfs_SOURCES = src/modules/sysinfo/cpuclock/cpuclock_sysfs.c
src_modules_sysinfo_cpuclock_cpuclock_sysfs_CPPFLAGS = $(MOD_CPPFLAGS) @e_cflags@ @SUID_CFLAGS@
src_modules_sysinfo_cpuclock_cpuclock_sysfsLDFLAGS = @SUID_LDFLAGS@
sysfsfreq_setuid_root_mode = a=rx,u+xs
sysfsfreq_setuid_root_user = root
sysfsfreq-install-data-hook:
@chown $(sysfsfreq_setuid_root_user) $(DESTDIR)$(src_modules_sysinfo_sysfsfreqdir)/cpuclock_sysfs$(EXEEXT) || true
@chmod $(sysfsfreq_setuid_root_mode) $(DESTDIR)$(src_modules_sysinfo_sysfsfreqdir)/cpuclock_sysfs$(EXEEXT) || true
INSTALL_DATA_HOOKS += sysfsfreq-install-data-hook
PHONIES += sysinfo install-sysinfo
sysinfo: $(sysinfopkg_LTLIBRARIES) $(sysinfo_DATA) $(src_modules_sysinfo_sysfsfreq_PROGRAMS)
install-sysinfo: install-sysinfoDATA install-sysinfopkgLTLIBRARIES install-src_modules_sysinfo_cpuclock_cpuclock_sysfsPROGRAMS
endif

View File

@ -1,25 +0,0 @@
EXTRA_DIST += src/modules/systray/module.desktop \
src/modules/systray/e-module-systray.edj
if USE_MODULE_SYSTRAY
systraydir = $(MDIR)/systray
systray_DATA = src/modules/systray/e-module-systray.edj \
src/modules/systray/module.desktop
systraypkgdir = $(MDIR)/systray/$(MODULE_ARCH)
systraypkg_LTLIBRARIES = src/modules/systray/module.la
src_modules_systray_module_la_LIBADD = $(MOD_LIBS)
src_modules_systray_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_systray_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_systray_module_la_SOURCES = src/modules/systray/e_mod_main.h \
src/modules/systray/e_mod_main.c \
src/modules/systray/e_mod_notifier_host_private.h \
src/modules/systray/e_mod_notifier_host.c \
src/modules/systray/e_mod_notifier_host_dbus.c \
src/modules/systray/e_mod_notifier_watcher.c
PHONIES += systray install-systray
systray: $(systraypkg_LTLIBRARIES) $(systray_DATA)
install-systray: install-systrayDATA install-systraypkgLTLIBRARIES
endif

View File

@ -1,22 +0,0 @@
EXTRA_DIST += src/modules/tasks/module.desktop \
src/modules/tasks/e-module-tasks.edj
if USE_MODULE_TASKS
tasksdir = $(MDIR)/tasks
tasks_DATA = src/modules/tasks/e-module-tasks.edj \
src/modules/tasks/module.desktop
taskspkgdir = $(MDIR)/tasks/$(MODULE_ARCH)
taskspkg_LTLIBRARIES = src/modules/tasks/module.la
src_modules_tasks_module_la_LIBADD = $(MOD_LIBS)
src_modules_tasks_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_tasks_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_tasks_module_la_SOURCES = src/modules/tasks/e_mod_main.c \
src/modules/tasks/e_mod_main.h \
src/modules/tasks/e_mod_config.c
PHONIES += tasks install-tasks
tasks: $(taskspkg_LTLIBRARIES) $(tasks_DATA)
install-tasks: install-tasksDATA install-taskspkgLTLIBRARIES
endif

View File

@ -1,36 +0,0 @@
EXTRA_DIST += src/modules/teamwork/module.desktop \
src/modules/teamwork/e-module-teamwork.edj
if USE_MODULE_TEAMWORK
teamworkdir = $(MDIR)/teamwork
teamwork_DATA = src/modules/teamwork/e-module-teamwork.edj \
src/modules/teamwork/module.desktop
teamworkpkgdir = $(MDIR)/teamwork/$(MODULE_ARCH)
teamworkpkg_LTLIBRARIES = src/modules/teamwork/module.la
src_modules_teamwork_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_teamwork_module_la_LIBADD = $(MOD_LIBS)
src_modules_teamwork_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_teamwork_module_la_SOURCES = src/modules/teamwork/e_mod_main.c \
src/modules/teamwork/e_mod_config.c \
src/modules/teamwork/e_mod_main.h \
src/modules/teamwork/e_mod_tw.c
if HAVE_WAYLAND
src_modules_teamwork_module_la_SOURCES += \
src/modules/teamwork/wl.c \
src/modules/teamwork/wl_teamwork.c \
src/modules/teamwork/wl_teamwork.h
endif
if ! HAVE_WAYLAND_ONLY
src_modules_teamwork_module_la_SOURCES += \
src/modules/teamwork/x11.c
endif
PHONIES += teamwork install-teamwork
teamwork: $(teamworkpkg_LTLIBRARIES) $(teamwork_DATA)
install-teamwork: install-teamworkDATA install-teamworkpkgLTLIBRARIES
endif

View File

@ -1,28 +0,0 @@
EXTRA_DIST += src/modules/temperature/module.desktop \
src/modules/temperature/e-module-temperature.edj
if USE_MODULE_TEMPERATURE
temperaturedir = $(MDIR)/temperature
temperature_DATA = src/modules/temperature/e-module-temperature.edj \
src/modules/temperature/module.desktop
temperaturepkgdir = $(MDIR)/temperature/$(MODULE_ARCH)
temperaturepkg_LTLIBRARIES = src/modules/temperature/module.la
src_modules_temperature_module_la_LIBADD = $(MOD_LIBS)
src_modules_temperature_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_temperature_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_temperature_module_la_SOURCES = src/modules/temperature/e_mod_main.c \
src/modules/temperature/e_mod_main.h \
src/modules/temperature/e_mod_config.c \
src/modules/temperature/e_mod_tempget.c
if HAVE_EEZE
src_modules_temperature_module_la_SOURCES += src/modules/temperature/e_mod_udev.c
endif
PHONIES += temperature install-temperature
temperature: $(temperaturepkg_LTLIBRARIES) $(temperature_DATA)
install-temperature: install-temperatureDATA install-temperaturepkgLTLIBRARIES
endif

View File

@ -1,23 +0,0 @@
EXTRA_DIST += src/modules/tiling/module.desktop \
src/modules/tiling/e-module-tiling.edj
if USE_MODULE_TILING
tilingdir = $(MDIR)/tiling
tiling_DATA = src/modules/tiling/e-module-tiling.edj \
src/modules/tiling/module.desktop
tilingpkgdir = $(MDIR)/tiling/$(MODULE_ARCH)
tilingpkg_LTLIBRARIES = src/modules/tiling/module.la
src_modules_tiling_module_la_LIBADD = $(MOD_LIBS)
src_modules_tiling_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_tiling_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_tiling_module_la_SOURCES = src/modules/tiling/e_mod_tiling.c \
src/modules/tiling/e_mod_tiling.h \
src/modules/tiling/window_tree.c \
src/modules/tiling/window_tree.h \
src/modules/tiling/e_mod_config.c
PHONIES += tiling install-tiling
tiling: $(tilingpkg_LTLIBRARIES) $(tiling_DATA)
install-tiling: install-tilingDATA install-tilingpkgLTLIBRARIES
endif

View File

@ -1,25 +0,0 @@
EXTRA_DIST += src/modules/time/module.desktop \
src/modules/time/e-module-time.edj
if USE_MODULE_TIME
timedir = $(MDIR)/time
time_DATA = src/modules/time/e-module-time.edj \
src/modules/time/module.desktop
timepkgdir = $(MDIR)/time/$(MODULE_ARCH)
timepkg_LTLIBRARIES = src/modules/time/module.la
src_modules_time_module_la_LIBADD = $(MOD_LIBS)
src_modules_time_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_time_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_time_module_la_SOURCES = \
src/modules/time/clock.c \
src/modules/time/clock.h \
src/modules/time/config.c \
src/modules/time/mod.c \
src/modules/time/time.c
PHONIES += time install-time
time: $(timepkg_LTLIBRARIES) $(time_DATA)
install-time: install-timeDATA install-timepkgLTLIBRARIES
endif

View File

@ -1,35 +0,0 @@
EXTRA_DIST += \
src/modules/vkbd/e_kbd_send.c \
src/modules/vkbd/e_kbd_dict.c \
src/modules/vkbd/e_kbd_send.h \
src/modules/vkbd/e-module-vkbd.edj \
src/modules/vkbd/e_kbd_cfg.c \
src/modules/vkbd/e_kbd_cfg.h \
src/modules/vkbd/keyboards/down.png \
src/modules/vkbd/keyboards/tab.png \
src/modules/vkbd/keyboards/backspace.png \
src/modules/vkbd/keyboards/Terminal.kbd \
src/modules/vkbd/keyboards/alpha.png \
src/modules/vkbd/keyboards/spanner.png \
src/modules/vkbd/keyboards/qwerty.png \
src/modules/vkbd/keyboards/numeric.png \
src/modules/vkbd/keyboards/enter.png \
src/modules/vkbd/keyboards/up.png \
src/modules/vkbd/keyboards/left.png \
src/modules/vkbd/keyboards/shift.png \
src/modules/vkbd/keyboards/Default.kbd \
src/modules/vkbd/keyboards/right.png \
src/modules/vkbd/keyboards/Numbers.kbd \
src/modules/vkbd/e_kbd_buf.h \
src/modules/vkbd/e_kbd_int.h \
src/modules/vkbd/module.desktop \
src/modules/vkbd/e_mod_main.h \
src/modules/vkbd/.gitignore \
src/modules/vkbd/e_kbd_int.c \
src/modules/vkbd/dicts/English_US_Small.dic \
src/modules/vkbd/dicts/English_US.dic \
src/modules/vkbd/meson.build \
src/modules/vkbd/e_kbd_dict.h \
src/modules/vkbd/e_mod_main.c \
src/modules/vkbd/e_kbd_buf.c \
src/modules/vkbd/theme.edc

View File

@ -1,24 +0,0 @@
EXTRA_DIST += src/modules/winlist/module.desktop \
src/modules/winlist/e-module-winlist.edj
if USE_MODULE_WINLIST
winlistdir = $(MDIR)/winlist
winlist_DATA = src/modules/winlist/e-module-winlist.edj \
src/modules/winlist/module.desktop
winlistpkgdir = $(MDIR)/winlist/$(MODULE_ARCH)
winlistpkg_LTLIBRARIES = src/modules/winlist/module.la
src_modules_winlist_module_la_LIBADD = $(MOD_LIBS)
src_modules_winlist_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_winlist_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_winlist_module_la_SOURCES = src/modules/winlist/e_mod_main.h \
src/modules/winlist/e_mod_main.c \
src/modules/winlist/e_int_config_winlist.c \
src/modules/winlist/e_winlist.h \
src/modules/winlist/e_winlist.c
PHONIES += winlist install-winlist
winlist: $(winlistpkg_LTLIBRARIES) $(winlist_DATA)
install-winlist: install-winlistDATA install-winlistpkgLTLIBRARIES
endif

View File

@ -1,27 +0,0 @@
EXTRA_DIST += \
src/modules/wireless/module.desktop \
src/modules/wireless/e-module-wireless.edj
if USE_MODULE_WIRELESS
wirelessdir = $(MDIR)/wireless
wireless_DATA = \
src/modules/wireless/module.desktop \
src/modules/wireless/e-module-wireless.edj
wirelesspkgdir = $(MDIR)/wireless/$(MODULE_ARCH)
wirelesspkg_LTLIBRARIES = src/modules/wireless/module.la
src_modules_wireless_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wireless_module_la_SOURCES = \
src/modules/wireless/connman.c \
src/modules/wireless/mod.c \
src/modules/wireless/wireless.c \
src/modules/wireless/wireless.h
src_modules_wireless_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wireless_module_la_LIBADD = $(MOD_LIBS)
PHONIES += wireless install-wireless
wireless: $(wirelesspkg_LTLIBRARIES) $(wireless_DATA)
install-wireless: install-wirelessDATA install-wirelesspkgLTLIBRARIES
endif

View File

@ -1,158 +0,0 @@
wd = src/modules/wizard/data/def-ibar.txt
wdd = src/modules/wizard/data/desktop/home.desktop \
src/modules/wizard/data/desktop/root.desktop \
src/modules/wizard/data/desktop/tmp.desktop
EXTRA_DIST += $(wd) $(wdd)
if USE_MODULE_WIZARD
wizarddir = $(MDIR)/wizard
wizard_DATA = $(wd)
wizard_desktopdir = $(MDIR)/wizard/desktop
wizard_desktop_DATA = $(wdd)
### dont install these - this way e wont list the module for people to
#wizard_DATA = src/modules/wizard/e-module-wizard.edj \
# src/modules/wizard/module.desktop
wizardpkgdir = $(MDIR)/wizard/$(MODULE_ARCH)
wizardpkg_LTLIBRARIES = src/modules/wizard/module.la \
src/modules/wizard/page_000.la \
src/modules/wizard/page_010.la \
src/modules/wizard/page_011.la \
src/modules/wizard/page_020.la \
src/modules/wizard/page_030.la \
src/modules/wizard/page_040.la \
src/modules/wizard/page_050.la \
src/modules/wizard/page_060.la \
src/modules/wizard/page_065.la \
src/modules/wizard/page_070.la \
src/modules/wizard/page_080.la \
src/modules/wizard/page_090.la \
src/modules/wizard/page_100.la \
src/modules/wizard/page_110.la \
src/modules/wizard/page_120.la \
src/modules/wizard/page_130.la \
src/modules/wizard/page_150.la \
src/modules/wizard/page_160.la \
src/modules/wizard/page_170.la \
src/modules/wizard/page_180.la \
src/modules/wizard/page_200.la
src_modules_wizard_module_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_module_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_module_la_SOURCES = src/modules/wizard/e_mod_main.c \
src/modules/wizard/e_wizard.c \
src/modules/wizard/e_wizard.h
src_modules_wizard_page_000_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_000_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_000_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_000_la_SOURCES = src/modules/wizard/page_000.c
src_modules_wizard_page_010_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_010_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_010_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_010_la_SOURCES = src/modules/wizard/page_010.c
src_modules_wizard_page_011_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_011_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_011_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_011_la_SOURCES = src/modules/wizard/page_011.c
src_modules_wizard_page_020_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_020_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_020_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_020_la_SOURCES = src/modules/wizard/page_020.c
src_modules_wizard_page_030_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_030_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_030_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_030_la_SOURCES = src/modules/wizard/page_030.c
src_modules_wizard_page_040_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_040_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_040_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_040_la_SOURCES = src/modules/wizard/page_040.c
src_modules_wizard_page_050_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_050_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_050_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_050_la_SOURCES = src/modules/wizard/page_050.c
src_modules_wizard_page_060_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_060_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_060_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_060_la_SOURCES = src/modules/wizard/page_060.c
src_modules_wizard_page_065_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_065_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_065_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_065_la_SOURCES = src/modules/wizard/page_065.c
src_modules_wizard_page_070_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_070_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_070_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_070_la_SOURCES = src/modules/wizard/page_070.c
src_modules_wizard_page_080_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_080_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_080_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_080_la_SOURCES = src/modules/wizard/page_080.c
src_modules_wizard_page_090_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_090_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_090_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_090_la_SOURCES = src/modules/wizard/page_090.c
src_modules_wizard_page_100_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_100_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_100_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_100_la_SOURCES = src/modules/wizard/page_100.c
src_modules_wizard_page_110_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_110_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_110_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_110_la_SOURCES = src/modules/wizard/page_110.c
src_modules_wizard_page_120_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_120_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_120_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_120_la_SOURCES = src/modules/wizard/page_120.c
src_modules_wizard_page_130_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_130_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_130_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_130_la_SOURCES = src/modules/wizard/page_130.c
src_modules_wizard_page_150_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_150_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_150_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_150_la_SOURCES = src/modules/wizard/page_150.c
src_modules_wizard_page_160_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_160_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_160_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_160_la_SOURCES = src/modules/wizard/page_160.c
src_modules_wizard_page_170_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_170_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_170_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_170_la_SOURCES = src/modules/wizard/page_170.c
src_modules_wizard_page_180_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_180_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_180_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_180_la_SOURCES = src/modules/wizard/page_180.c
src_modules_wizard_page_200_la_LIBADD = $(MOD_LIBS)
src_modules_wizard_page_200_la_CPPFLAGS = $(MOD_CPPFLAGS)
src_modules_wizard_page_200_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wizard_page_200_la_SOURCES = src/modules/wizard/page_200.c
PHONIES += wizard install-wizard
wizard: $(wizardpkg_LTLIBRARIES) $(wizard_DATA)
install-wizard: install-wizardDATA install-wizardpkgLTLIBRARIES
endif

View File

@ -1,17 +0,0 @@
if USE_MODULE_WL_BUFFER
wl_bufferdir = $(MDIR)/wl_buffer
wl_bufferpkgdir = $(MDIR)/wl_buffer/$(MODULE_ARCH)
wl_bufferpkg_LTLIBRARIES = src/modules/wl_buffer/module.la
src_modules_wl_buffer_module_la_DEPENDENCIES = $(MDEPENDENCIES)
src_modules_wl_buffer_module_la_CPPFLAGS = $(MOD_CPPFLAGS) @WAYLAND_CFLAGS@
src_modules_wl_buffer_module_la_LIBADD = $(MOD_LIBS) @WAYLAND_LIBS@
src_modules_wl_buffer_module_la_LDFLAGS = $(MOD_LDFLAGS)
src_modules_wl_buffer_module_la_SOURCES = \
src/modules/wl_buffer/e_mod_main.c
PHONIES += wl_buffer install-wl_buffer
wl_buffer: $(wl_bufferpkg_LTLIBRARIES) $(wl_buffer_DATA)
install-wl_buffer: install-wl_bufferpkgLTLIBRARIES
endif

Some files were not shown because too many files have changed in this diff Show More