back to automake

This commit is contained in:
Dana Jansens 2003-04-13 21:17:02 +00:00
parent 1e1ee70650
commit dfc9680e33
45 changed files with 228 additions and 882 deletions

View file

@ -9,3 +9,10 @@ Makefile
config.guess
config.sub
ltmain.sh
ABOUT-NLS
INSTALL
compile
config.rpath
depcomp
missing
mkinstalldirs

223
INSTALL
View file

@ -1,223 +0,0 @@
Basic Installation
==================
These are generic installation instructions.
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 only 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. If you're
using `csh' on an old version of System V, you might need to type
`sh ./configure' instead to prevent `csh' from trying to execute
`configure' itself.
Running `configure' takes awhile. 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.
4. Type `make install' to install the programs and any data files and
documentation.
5. 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.
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=c89 CFLAGS=-O2 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 must use a version of `make' that
supports the `VPATH' variable, such as 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 `..'.
If you have to use a `make' that does not support the `VPATH'
variable, you have 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.
Installation Names
==================
By default, `make install' will install the package's files in
`/usr/local/bin', `/usr/local/man', etc. You can specify an
installation prefix other than `/usr/local' by giving `configure' the
option `--prefix=PATH'.
You can specify separate installation prefixes for
architecture-specific files and architecture-independent files. If you
give `configure' the option `--exec-prefix=PATH', the package will use
PATH as the prefix for installing programs and libraries.
Documentation and other data files will still use the regular prefix.
In addition, if you use an unusual directory layout you can give
options like `--bindir=PATH' 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.
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'.
Optional Features
=================
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.
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 `--target=TYPE' option 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
will cause the specified gcc to be used as the C compiler (unless it is
overridden in the site shell script).
`configure' Invocation
======================
`configure' recognizes the following options to control how it
operates.
`--help'
`-h'
Print a summary of the options to `configure', and exit.
`--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.
`configure' also accepts some other, not widely useful, options. Run
`configure --help' for more details.

16
Makefile.am Normal file
View file

@ -0,0 +1,16 @@
#SUBDIRS = po themes doc render cwmcc obcl kernel plugins
SUBDIRS = po themes data render kernel plugins
MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in stamp-h.in
doc:
$(MAKE) -$(MAKEFLAGS) -C doc/doxygen doc
distclean-local:
rm -f *\~ gmon.out .\#*
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = config.rpath mkinstalldirs INSTALL README \
COPYING AUTHORS CHANGELOG
.PHONY: doc

View file

@ -1,34 +0,0 @@
include build/Makefile.incl
targets = render cwmcc obcl kernel plugins themes data
all: libtool
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done
uninstall:
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done
install: all
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done
clean:
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
done
$(RM) *\~
distclean: clean
$(RM) configure Makefile.incl Makefile
$(RM) -r .deps/
LIBTOOL_DEPS = @LIBTOOL_DEPS@
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
.PHONY: all clean distclean install uninstall

View file

@ -4,12 +4,12 @@ sh() {
/bin/sh -c "set -x; $*"
}
#sh autopoint --force # for GNU gettext
sh autopoint --force # for GNU gettext
sh libtoolize --copy --force --automake
sh aclocal -I m4
#sh autoheader
sh autoconf
#sh automake --foreign --include-deps --add-missing --copy
sh automake --foreign --include-deps --add-missing --copy
echo
echo You are now ready to run ./configure

View file

@ -1 +0,0 @@
Makefile.incl

View file

@ -1,48 +0,0 @@
include build/Makefile.incl
dir = cwmcc
CPPFLAGS += $(GLIB_CFLAGS) $(XFT_CFLAGS) -DG_LOG_DOMAIN=\"CWMCC\"
LIBS += $(GLIB_LIBS)
target = libcwmcc.la
sources = cwmcc.c atom.c prop.c client_props.c root_props.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/, $(target))
objects := $(addprefix $(dir)/, $(sources:.c=.lo))
sources := $(addprefix $(srcdir)/, $(sources))
deps := $(addprefix $(depdir)/, $(objects:.lo=.d))
depdir := $(depdir)/$(dir)
all: $(target)
$(target): $(objects)
$(LINK) -rpath $(libdir) -o $@ $^ $(LDFLAGS)
$(dir)/%.lo: $(srcdir)/%.c $(depdir)/%.d
$(LTCOMPILE) -c -o $@ $<
$(depdir)/%.d: $(srcdir)/%.c
@echo Building dependancies for $<
@$(INSTALL) -d $(depdir)
@$(DEPCOMPILE) -w -MM -MF $@ -MQ $(<:.c=.lo) $<
install:
$(INSTALL) -d $(DESTDIR)$(libdir)/
$(LIBTOOL) --mode=install $(INSTALL) $(target) \
$(DESTDIR)$(libdir)/$(notdir $(target))
$(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
uninstall:
$(LTRM) $(DESTDIR)$(libdir)/$(notdir $(target))
clean:
$(LTCLEAN) $(target) $(objects)
$(RM) $(srcdir)/*\~
distclean:
-include $(deps)
.PHONY: all install uninstall clean distclean

View file

@ -1,28 +0,0 @@
include build/Makefile.incl
dir = data
files = rc3
srcdir := $(srcdir)/$(dir)
dir := $(DESTDIR)$(rcdir)
sources := $(addprefix $(srcdir)/,$(files))
all:
install:
$(INSTALL) -d $(dir)
$(INSTALL) -m 644 $(sources) $(dir)
uninstall:
for i in $(files); do \
$(RM) $(dir)/$$i; \
done
-rmdir $(dir)
clean:
$(RM) $(srcdir)/*\~
distclean:
.PHONY: all install uninstall clean distclean

View file

@ -1,60 +0,0 @@
# @configure_input@
CC = @CC@
@SET_MAKE@
MAKE += --no-print-directory
CFLAGS = @CFLAGS@
CPPFLAGS = -I. -I$(srcdir) @CPPFLAGS@ \
-DLOCALEDIR=\"$(localedir)\" \
-DRCDIR=\"$(rcdir)\" \
-DPLUGINDIR=\"$(plugindir)\" \
-DENGINEDIR=\"$(enginedir)\" \
-DDEFAULT_ENGINE=\"openbox\" \
-DBINARY=\"$(binary)\"
DEFS = @DEFS@
LIBS = @LIBS@
LDFLAGS = @LDFLAGS@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_LIBS = @GLIB_LIBS@ -DG_DISABLE_DEPRECATED
GMODULE_CFLAGS = @GMODULE_CFLAGS@
GMODULE_LIBS = @GMODULE_LIBS@ -DG_DISABLE_DEPRECATED
X_CFLAGS = @X_CFLAGS@
X_LIBS = @X_PRE_LIBS@ @X_LIBS@ @X_EXTRA_LIBS@
XINERAMA_LIBS = @XINERAMA_LIBS@
XFT_CFLAGS = @XFT_CFLAGS@
XFT_LIBS = @XFT_LIBS@
FLEX = @FLEX@
BISON = @BISON@
INSTALL = @INSTALL@
LIBTOOL = @LIBTOOL@
srcdir = @srcdir@
top_builddir = .
depdir = .deps
prefix ?= @prefix@
exec_prefix ?= @exec_prefix@
bindir ?= @bindir@
libdir ?= @libdir@
includedir ?= @includedir@
datadir ?= @datadir@
localedir = $(datadir)/locale
enginedir = $(libdir)/openbox/engines
plugindir = $(libdir)/openbox/plugins
rcdir = $(datadir)/openbox
themedir = $(datadir)/openbox/themes
COMPILE = $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS)
DEPCOMPILE = $(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS)
LINK = $(LIBTOOL) --mode=link $(CC) $(LIBS)
LTCLEAN = $(LIBTOOL) --mode=clean $(RM)
LTRM = $(LIBTOOL) --mode=uninstall $(RM)

View file

@ -1,67 +0,0 @@
include build/Makefile.incl
dir = kernel
CPPFLAGS += $(GLIB_CFLAGS) $(GMODULE_CFLAGS) $(XFT_CFLAGS) $(X_CFLAGS) \
-DG_LOG_DOMAIN=\"Openbox\"
LIBS += $(GLIB_LIBS) $(GMODULE_LIBS) $(XFT_LIBS) $(X_LIBS) $(XINERAMA_LIBS) \
-lobrender
LDFLAGS += -Lrender -export-dynamic
target = openbox3
sources = action.c client.c config.c dispatch.c event.c group.c \
extensions.c focus.c frame.c grab.c menu.c openbox.c framerender.c \
parse.c plugin.c prop.c screen.c stacking.c timer.c xerror.c \
parse.lex.c parse.tab.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/,$(target))
objects := $(addprefix $(dir)/,$(sources:.c=.lo))
sources := $(addprefix $(srcdir)/,$(sources))
deps := $(addprefix $(depdir)/,$(objects:.lo=.d))
depdir := $(depdir)/$(dir)
all: $(target)
$(target): $(objects) render/libobrender.la
$(LINK) -o $@ $^ $(LIBS) $(LDFLAGS)
# kill the implicit .c.y rule
$(srcdir)/%.c: $(srcdir)/%.y
@
$(dir)/%.lo: $(srcdir)/%.c $(depdir)/%.d
$(COMPILE) -c -o $@ $<
%.lex.c: %.l
$(FLEX) -o$@ $<
%.tab.c: %.y
$(BISON) -d -o $@ $<
$(depdir)/%.d: $(srcdir)/%.c
@echo Building dependancies for $<
@$(INSTALL) -d $(depdir)
@$(CC) $(CPPFLAGS) $(CFLAGS) -w -MM -MF $@ -MQ $(<:.c=.lo) $<
install:
$(INSTALL) -d $(DESTDIR)$(bindir)/
$(LIBTOOL) --mode=install $(INSTALL) $(target) \
$(DESTDIR)$(bindir)/$(notdir $(target))
uninstall:
-$(RM) $(DESTDIR)$(bindir)/$(notdir $(target))
-rmdir $(DESTDIR)$(bindir)/
clean:
$(LTCLEAN) $(target)
$(RM) $(objects) $(srcdir)/*\~
$(RM) $(filter %.lex.c, $(sources))
$(RM) $(filter %.tab.c, $(sources))
$(RM) $(patsubst %.c,%.h, $(filter %.tab.c, $(sources)))
distclean:
-include $(deps)
.PHONY: all install uninstall clean distclean

View file

@ -1,47 +0,0 @@
include build/Makefile.incl
dir = obcl
CPPFLAGS += $(GLIB_CFLAGS) $(XFT_CFLAGS) -DG_LOG_DOMAIN=\"OBCF\"
target = libobcl.la
sources = obcl.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/, $(target))
objects := $(addprefix $(dir)/, $(sources:.c=.lo))
sources := $(addprefix $(srcdir)/, $(sources))
deps := $(addprefix $(depdir)/, $(objects:.lo=.d))
depdir := $(depdir)/$(dir)
all: $(target)
$(target): $(objects)
$(LINK) -rpath $(libdir) -o $@ $^ $(LDFLAGS)
$(dir)/%.lo: $(srcdir)/%.c $(depdir)/%.d
$(LTCOMPILE) -c -o $@ $<
$(depdir)/%.d: $(srcdir)/%.c
@echo Building dependancies for $<
@$(INSTALL) -d $(depdir)
@$(DEPCOMPILE) -w -MM -MF $@ -MQ $(<:.c=.lo) $<
install:
$(INSTALL) -d $(DESTDIR)$(libdir)/
$(LIBTOOL) --mode=install $(INSTALL) $(target) \
$(DESTDIR)$(libdir)/$(notdir $(target))
$(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
uninstall:
$(LTRM) $(DESTDIR)$(libdir)/$(notdir $(target))
clean:
$(LTCLEAN) $(target) $(objects)
$(RM) $(srcdir)/*\~
distclean:
-include $(deps)
.PHONY: all install uninstall clean distclean

View file

@ -1,22 +0,0 @@
include build/Makefile.incl
targets = resistance placement keyboard mouse
all clean distclean:
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.plugins.$$i $@; \
done
install:
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.plugins.$$i $@; \
done
$(LIBTOOL) --mode=finish $(DESTDIR)$(plugindir)
uninstall:
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.plugins.$$i $@; \
done
-rmdir $(DESTDIR)$(plugindir)
.PHONY: all clean distclean install uninstall

View file

@ -1,47 +0,0 @@
include build/Makefile.incl
dir = plugins/keyboard
CPPFLAGS += $(GLIB_CFLAGS) $(XFT_CFLAGS) -DG_LOG_DOMAIN=\"Plugin-Keyboard\"
LDFLAGS += -module -avoid-version
target = keyboard.la
sources = keyboard.c tree.c translate.c keyparse.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/,$(target))
objects := $(addprefix $(dir)/,$(sources:.c=.lo))
sources := $(addprefix $(srcdir)/,$(sources))
deps := $(addprefix $(depdir)/,$(objects:.lo=.d))
depdir := $(depdir)/$(dir)
all: $(target)
$(target): $(objects)
$(LINK) -rpath $(plugindir) -o $@ $^ $(LDFLAGS)
$(dir)/%.lo: $(srcdir)/%.c $(depdir)/%.d
$(LTCOMPILE) -c -o $@ $<
$(depdir)/%.d: $(srcdir)/%.c
@echo Building dependancies for $<
$(INSTALL) -d $(depdir)
@$(DEPCOMPILE) -w -MM -MF $@ -MQ $(<:.c=.lo) $<
install:
$(INSTALL) -d $(DESTDIR)$(plugindir)/
$(LIBTOOL) --mode=install $(INSTALL) $(target) \
$(DESTDIR)$(plugindir)/$(notdir $(target))
uninstall:
$(LTRM) $(DESTDIR)$(plugindir)/$(notdir $(target))
clean:
$(LTCLEAN) $(target) $(objects)
$(RM) $(srcdir)/*\~
distclean:
-include $(deps)
.PHONY: all install uninstall clean distclean

View file

@ -1,47 +0,0 @@
include build/Makefile.incl
dir = plugins/mouse
CPPFLAGS += $(GLIB_CFLAGS) $(XFT_CFLAGS) -DG_LOG_DOMAIN=\"Plugin-Mouse\"
LDFLAGS += -module -avoid-version
target = mouse.la
sources = mouse.c translate.c mouseparse.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/,$(target))
objects := $(addprefix $(dir)/,$(sources:.c=.lo))
sources := $(addprefix $(srcdir)/,$(sources))
deps := $(addprefix $(depdir)/,$(objects:.lo=.d))
depdir := $(depdir)/$(dir)
all: $(target)
$(target): $(objects)
$(LINK) -rpath $(plugindir) -o $@ $^ $(LDFLAGS)
$(dir)/%.lo: $(srcdir)/%.c $(depdir)/%.d
$(LTCOMPILE) -c -o $@ $<
$(depdir)/%.d: $(srcdir)/%.c
@echo Building dependancies for $<
$(INSTALL) -d $(depdir)
@$(DEPCOMPILE) -w -MM -MF $@ -MQ $(<:.c=.lo) $<
install:
$(INSTALL) -d $(DESTDIR)$(plugindir)/
$(LIBTOOL) --mode=install $(INSTALL) $(target) \
$(DESTDIR)$(plugindir)/$(notdir $(target))
uninstall:
$(LTRM) $(DESTDIR)$(plugindir)/$(notdir $(target))
clean:
$(LTCLEAN) $(target) $(objects)
$(RM) $(srcdir)/*\~
distclean:
-include $(deps)
.PHONY: all install uninstall clean distclean

View file

@ -1,45 +0,0 @@
include build/Makefile.incl
dir = plugins/placement
CPPFLAGS += $(GLIB_CFLAGS) $(XFT_CFLAGS) -DG_LOG_DOMAIN=\"Plugin-Placement\"
LDFLAGS += -module -avoid-version
target = placement.la
sources = history.c placement.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/,$(target))
objects := $(addprefix $(dir)/,$(sources:.c=.lo))
sources := $(addprefix $(srcdir)/,$(sources))
deps := $(addprefix $(depdir)/,$(objects:.lo=.d))
depdir := $(depdir)/$(dir)
all: $(target)
$(target): $(objects)
$(LINK) -rpath $(plugindir) -o $@ $^ $(LDFLAGS)
$(dir)/%.lo: $(srcdir)/%.c $(depdir)/%.d
$(LTCOMPILE) -c -o $@ $<
$(depdir)/%.d: $(srcdir)/%.c
@echo Building dependancies for $<
$(INSTALL) -d $(depdir)
@$(DEPCOMPILE) -w -MM -MF $@ -MQ $(<:.c=.lo) $<
install:
$(INSTALL) -d $(DESTDIR)$(plugindir)/
$(LIBTOOL) --mode=install $(INSTALL) $(target) \
$(DESTDIR)$(plugindir)/$(notdir $(target))
uninstall:
$(LTRM) $(DESTDIR)$(plugindir)/$(notdir $(target))
clean:
$(LTCLEAN) $(target) $(objects)
$(RM) $(srcdir)/*\~
-include $(deps)
.PHONY: all install uninstall clean distclean

View file

@ -1,45 +0,0 @@
include build/Makefile.incl
dir = plugins
CPPFLAGS += $(GLIB_CFLAGS) $(XFT_CFLAGS) -DG_LOG_DOMAIN=\"Plugin-Resistance\"
LDFLAGS += -module -avoid-version
target = resistance.la
sources = resistance.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/,$(target))
objects := $(addprefix $(dir)/,$(sources:.c=.lo))
sources := $(addprefix $(srcdir)/,$(sources))
deps := $(addprefix $(depdir)/,$(objects:.lo=.d))
depdir := $(depdir)/$(dir)
all: $(target)
$(target): $(objects)
$(LINK) -rpath $(plugindir) -o $@ $^ $(LDFLAGS)
$(dir)/%.lo: $(srcdir)/%.c $(depdir)/%.d
$(LTCOMPILE) -c -o $@ $<
$(depdir)/%.d: $(srcdir)/%.c
@echo Building dependancies for $<
$(INSTALL) -d $(depdir)
@$(DEPCOMPILE) -w -MM -MF $@ -MQ $(<:.c=.lo) $<
install:
$(INSTALL) -d $(DESTDIR)$(plugindir)/
$(LIBTOOL) --mode=install $(INSTALL) $(target) \
$(DESTDIR)$(plugindir)/$(notdir $(target))
uninstall:
$(LTRM) $(DESTDIR)$(plugindir)/$(notdir $(target))
clean:
$(LTCLEAN) $(target) $(objects)
$(RM) $(srcdir)/*\~
-include $(deps)
.PHONY: all install uninstall clean distclean

View file

@ -1,49 +0,0 @@
include build/Makefile.incl
dir = render
theme = operation
CPPFLAGS += $(GLIB_CFLAGS) $(XFT_CFLAGS) -DG_LOG_DOMAIN=\"Render\" \
-DDEFAULT_THEME=\"$(theme)\" -DTHEMEDIR=\"$(themedir)\"
target = libobrender.la
sources = color.c font.c gradient.c image.c mask.c render.c theme.c
srcdir := $(srcdir)/$(dir)
target := $(addprefix $(dir)/, $(target))
objects := $(addprefix $(dir)/, $(sources:.c=.lo))
sources := $(addprefix $(srcdir)/, $(sources))
deps := $(addprefix $(depdir)/, $(objects:.lo=.d))
depdir := $(depdir)/$(dir)
all: $(target)
$(target): $(objects)
$(LINK) -rpath $(libdir) -o $@ $^ $(LDFLAGS)
$(dir)/%.lo: $(srcdir)/%.c $(depdir)/%.d
$(LTCOMPILE) -c -o $@ $<
$(depdir)/%.d: $(srcdir)/%.c
@echo Building dependancies for $<
@$(INSTALL) -d $(depdir)
@$(DEPCOMPILE) -w -MM -MF $@ -MQ $(<:.c=.lo) $<
install:
$(INSTALL) -d $(DESTDIR)$(libdir)/
$(LIBTOOL) --mode=install $(INSTALL) $(target) \
$(DESTDIR)$(libdir)/$(notdir $(target))
$(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
uninstall:
$(LTRM) $(DESTDIR)$(libdir)/$(notdir $(target))
clean:
$(LTCLEAN) $(target) $(objects)
$(RM) $(srcdir)/*\~
distclean:
-include $(deps)
.PHONY: all install uninstall clean distclean

View file

@ -1,72 +0,0 @@
include build/Makefile.incl
dir = themes
files = artwiz bbs bluebox cthulhain deep ebox fieron fieron2 flux \
frobozz frobust mbdtex miklos nyz nyzclone ob20 operation \
outcomes paper purplehaaze shade steelblue steelblue2 \
the_orange trisb twice warp-xp
srcdir := $(srcdir)/$(dir)
dir := $(DESTDIR)$(themedir)
sources := $(addprefix $(srcdir)/,$(files))
fieron_buttons_dir := $(dir)/fieron_buttons
fieron_buttons_srcdir := $(srcdir)/fieron_buttons
fieron_buttons := close.xbm icon.xbm max.xbm stick.xbm
fieron_buttons_sources := $(addprefix $(fieron_buttons_srcdir)/,$(fieron_buttons))
fieron2_buttons_dir:=$(dir)/fieron2_buttons
fieron2_buttons_srcdir:=$(srcdir)/fieron2_buttons
fieron2_buttons:=close.xbm icon.xbm max.xbm stick.xbm
fieron2_buttons_sources := $(addprefix $(fieron2_buttons_srcdir)/,$(fieron2_buttons))
ebox_buttons_dir:=$(dir)/ebox_buttons
ebox_buttons_srcdir:=$(srcdir)/ebox_buttons
ebox_buttons:=close.xbm icon.xbm max.xbm
ebox_buttons_sources := $(addprefix $(ebox_buttons_srcdir)/,$(ebox_buttons))
all:
install:
$(INSTALL) -d $(dir)
for i in $(sources); do \
$(INSTALL) -m 644 $$i $(dir); \
done
$(INSTALL) -d $(fieron_buttons_dir)
for i in $(fieron_buttons_sources); do \
$(INSTALL) $$i $(fieron_buttons_dir); \
done
$(INSTALL) -d $(fieron2_buttons_dir)
for i in $(fieron2_buttons_sources); do \
$(INSTALL) $$i $(fieron2_buttons_dir); \
done
$(INSTALL) -d $(ebox_buttons_dir)
for i in $(ebox_buttons_sources); do \
$(INSTALL) $$i $(ebox_buttons_dir); \
done
uninstall:
for i in $(ebox_buttons); do \
$(RM) $(ebox_buttons_dir)/$$i; \
done
-rmdir $(ebox_buttons_dir)
for i in $(fieron2_buttons); do \
$(RM) $(fieron2_buttons_dir)/$$i; \
done
-rmdir $(fieron2_buttons_dir)
for i in $(fieron_buttons); do \
$(RM) $(fieron_buttons_dir)/$$i; \
done
-rmdir $(fieron_buttons_dir)
for i in $(files); do \
$(RM) $(dir)/$$i; \
done
-rmdir $(dir)
clean:
distclean:
.PHONY: all clean distclean install uninstall

View file

@ -1,5 +1,6 @@
AC_PREREQ([2.50])
AC_INIT([openbox], [2.90.0cvs], [http://bugzilla.icculus.org])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([kernel/openbox.c])
AC_PREFIX_DEFAULT([/usr/local])
@ -33,12 +34,9 @@ LIBTOOL="$LIBTOOL --silent"
AC_PROG_INSTALL
OB_NLS
## XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ##
##ALL_LINGUAS=""
##AM_GNU_GETTEXT_VERSION(0.11.5)
##AM_GNU_GETTEXT([external])
## XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ##
ALL_LINGUAS=""
AM_GNU_GETTEXT_VERSION(0.11.5)
AM_GNU_GETTEXT([external])
AC_CHECK_HEADERS(ctype.h fcntl.h locale.h signal.h string.h stdio.h stdlib.h)
AC_CHECK_HEADERS(unistd.h sys/stat.h sys/select.h sys/time.h sys/wait.h)
@ -62,7 +60,16 @@ X11_EXT_XKB
X11_EXT_SHAPE
X11_EXT_XINERAMA
AC_CONFIG_FILES([Makefile build/Makefile.incl])
AC_CONFIG_FILES([Makefile
po/Makefile.in
themes/Makefile
data/Makefile
render/Makefile
kernel/Makefile
plugins/Makefile
plugins/placement/Makefile
plugins/mouse/Makefile
plugins/keyboard/Makefile])
AC_OUTPUT
AC_MSG_RESULT

View file

@ -1,4 +0,0 @@
all clean distclean install uninstall:
$(MAKE) -$(MAKEFLAGS) -C .. $@
.PHONY: all clean distclean install uninstall

2
data/.cvsignore Normal file
View file

@ -0,0 +1,2 @@
Makefile.in
Makefile

8
data/Makefile.am Normal file
View file

@ -0,0 +1,8 @@
rcdir=$(datadir)/openbox
rc_DATA=rc3
MAINTAINERCLEANFILES=Makefile.in
distclean-local:
$(RM) *\~ *.orig *.rej .\#*

View file

@ -1,4 +0,0 @@
all clean distclean install uninstall:
$(MAKE) -$(MAKEFLAGS) -C .. $@
.PHONY: all clean distclean install uninstall

View file

@ -26,3 +26,5 @@ screen.lo
stacking.lo
timer.lo
xerror.lo
Makefile.in
.deps

View file

@ -1,4 +0,0 @@
all clean distclean install uninstall:
$(MAKE) -$(MAKEFLAGS) -C .. $@
.PHONY: all clean distclean install uninstall

49
openbox/Makefile.am Normal file
View file

@ -0,0 +1,49 @@
localedir=$(datadir)/locale
plugindir=$(libdir)/openbox/plugins
rcdir=$(datadir)/openbox
binary=openbox3
url=http://icculus.org/openbox
CPPFLAGS=$(X_CFLAGS) $(XFT_CFLAGS) $(GLIB_CFLAGS) $(GMODULE_CFLAGS) \
@CPPFLAGS@ \
-DLOCALEDIR=\"$(localedir)\" \
-DRCDIR=\"$(rcdir)\" \
-DPLUGINDIR=\"$(plugindir)\" \
-DG_LOG_DOMAIN=\"Openbox\" \
-DBINARY=\"$(binary)\"
INCLUDES=-I..
LIBS=$(X_LIBS) $(XFT_LIBS) $(XINERAMA_LIBS) $(GLIB_LIBS) $(GMODULE_LIBS) @LIBS@
bin_PROGRAMS=$(binary)
openbox3_LDADD=@LIBINTL@ -lobrender -L../render
openbox3_LDFLAGS=-export-dynamic
openbox3_SOURCES=parse.tab.c parse.lex.c action.c client.c config.c \
extensions.c focus.c frame.c grab.c menu.c openbox.c \
framerender.c parse.c plugin.c prop.c screen.c stacking.c \
dispatch.c event.c group.c timer.c xerror.c
noinst_HEADERS=action.h client.h config.h dispatch.h event.h extensions.h \
focus.h frame.h framerender.h geom.h gettext.h grab.h group.h \
menu.h openbox.h parse.h parse.tab.h plugin.h prop.h screen.h \
stacking.h timer.h xerror.h
# kill the implicit .c.y rule
%.c: %.y
@
%.lex.c: %.l
$(FLEX) -o$@ $<
%.tab.c: %.y
$(BISON) -d -o $@ $<
MAINTAINERCLEANFILES=Makefile.in
clean-local:
$(RM) parse.lex.c parse.tab.c parse.tab.h
distclean-local:
$(RM) *\~ *.orig *.rej .\#*

View file

@ -1,3 +1,6 @@
resistance.la
.libs
resistance.lo
Makefile.in
.deps
resistance_la-resistance.lo

View file

@ -1,4 +0,0 @@
all clean distclean install uninstall:
$(MAKE) -$(MAKEFLAGS) -C .. $@
.PHONY: all clean distclean install uninstall

21
plugins/Makefile.am Normal file
View file

@ -0,0 +1,21 @@
plugindir=$(libdir)/openbox/plugins
SUBDIRS = keyboard mouse placement
CPPFLAGS=$(XFT_CFLAGS) $(GLIB_CFLAGS) @CPPFLAGS@ \
-DPLUGINDIR=\"$(plugindir)\"
INCLUDES=-I..
plugin_LTLIBRARIES=resistance.la
resistance_la_CPPFLAGS=-DG_LOG_DOMAIN=\"Plugin-Resistance\"
resistance_la_LDFLAGS=-module -avoid-version
resistance_la_SOURCES=resistance.c
noinst_HEADERS=
MAINTAINERCLEANFILES= Makefile.in
distclean-local:
$(RM) *\~ *.orig *.rej .\#*

View file

@ -5,3 +5,5 @@ translate.lo
keyaction.lo
.libs
keyparse.lo
Makefile.in
.deps

View file

@ -1,4 +0,0 @@
all clean distclean install uninstall:
$(MAKE) -$(MAKEFLAGS) -C ../.. $@
.PHONY: all clean distclean install uninstall

View file

@ -0,0 +1,18 @@
plugindir=$(libdir)/openbox/plugins
CPPFLAGS=$(XFT_CFLAGS) $(GLIB_CFLAGS) @CPPFLAGS@ \
-DG_LOG_DOMAIN=\"Plugin-Keyboard\"
INCLUDES=-I../..
plugin_LTLIBRARIES=keyboard.la
keyboard_la_LDFLAGS=-module -avoid-version
keyboard_la_SOURCES=keyboard.c keyparse.c translate.c tree.c
noinst_HEADERS=keyboard.h keyparse.h translate.h tree.h
MAINTAINERCLEANFILES=Makefile.in
distclean-local:
$(RM) *\~ *.orig *.rej .\#*

View file

@ -3,3 +3,5 @@ mouse.la
translate.lo
mouseparse.lo
.libs
Makefile.in
.deps

View file

@ -1,4 +0,0 @@
all clean distclean install uninstall:
$(MAKE) -$(MAKEFLAGS) -C ../.. $@
.PHONY: all clean distclean install uninstall

18
plugins/mouse/Makefile.am Normal file
View file

@ -0,0 +1,18 @@
plugindir=$(libdir)/openbox/plugins
CPPFLAGS=$(XFT_CFLAGS) $(GLIB_CFLAGS) @CPPFLAGS@ \
-DG_LOG_DOMAIN=\"Plugin-Mouse\"
INCLUDES=-I../..
plugin_LTLIBRARIES=mouse.la
mouse_la_LDFLAGS=-module -avoid-version
mouse_la_SOURCES=mouse.c mouseparse.c translate.c
noinst_HEADERS=mouse.h mouseparse.h translate.h
MAINTAINERCLEANFILES=Makefile.in
distclean-local:
$(RM) *\~ *.orig *.rej .\#*

View file

@ -2,3 +2,5 @@ placement.la
placement.lo
history.lo
.libs
Makefile.in
.deps

View file

@ -1,4 +0,0 @@
all clean distclean install uninstall:
$(MAKE) -$(MAKEFLAGS) -C ../.. $@
.PHONY: all clean distclean install uninstall

View file

@ -0,0 +1,18 @@
plugindir=$(libdir)/openbox/plugins
CPPFLAGS=$(XFT_CFLAGS) $(GLIB_CFLAGS) @CPPFLAGS@ \
-DG_LOG_DOMAIN=\"Plugin-Placement\"
INCLUDES=-I../..
plugin_LTLIBRARIES=placement.la
placement_la_LDFLAGS=-module -avoid-version
placement_la_SOURCES=history.c placement.c
noinst_HEADERS=history.h
MAINTAINERCLEANFILES=Makefile.in
distclean-local:
$(RM) *\~ *.orig *.rej .\#*

View file

@ -9,3 +9,5 @@ en@quot.header
insert-header.sin
quot.sed
remove-potcdate.sin
Makefile.in
Makefile

View file

@ -10,3 +10,5 @@ render.lo
test.lo
libobrender.la
theme.lo
Makefile.in
.deps

View file

@ -1,4 +0,0 @@
all clean distclean install uninstall:
$(MAKE) -$(MAKEFLAGS) -C .. $@
.PHONY: all clean distclean install uninstall

27
render/Makefile.am Normal file
View file

@ -0,0 +1,27 @@
themedir=$(datadir)/openbox/themes
theme=operation
CPPFLAGS=$(XFT_CFLAGS) $(GLIB_CFLAGS) @CPPFLAGS@ \
-DG_LOG_DOMAIN=\"Render\" \
-DDEFAULT_THEME=\"$(theme)\" \
-DTHEMEDIR=\"$(themedir)\"
INCLUDES=-I..
LIBS=$(XFT_LIBS) $(GLIB_LIBS) @LIBS@
noinst_PROGRAMS=rendertest
rendertest_LDFLAGS=-lobrender -L.
rendertest_SOURCES=test.c
lib_LTLIBRARIES=libobrender.la
libobrender_la_SOURCES=color.c font.c gradient.c image.c mask.c render.c \
theme.c
noinst_HEADERS=render.h gradient.h color.h font.h mask.h image.h
MAINTAINERCLEANFILES=Makefile.in
distclean-local:
$(RM) *\~ *.orig *.rej .\#*

View file

@ -1,6 +0,0 @@
files=$(wildcard *.c)
all: $(files:.c=)
%: %.c
$(CC) $(CFLAGS) -o $@ $^ -lX11 -L/usr/X11R6/lib -I/usr/X11R6/include

View file

@ -0,0 +1,2 @@
Makefile.in
Makefile

11
themes/Makefile.am Normal file
View file

@ -0,0 +1,11 @@
themedir=$(datadir)/openbox/themes
theme_DATA=artwiz bbs bluebox cthulhain deep ebox fieron fieron2 flux frobozz \
frobust mbdtex miklos nyz nyzclone ob20 operation outcomes paper \
purplehaaze shade steelblue steelblue2 the_orange trisb twice \
warp-xp
MAINTAINERCLEANFILES=Makefile.in
distclean-local:
$(RM) *\~ *.orig *.rej .\#*