the kernel/ dir has been moved to openbox/
This commit is contained in:
parent
2a79db164c
commit
a6532c3b2f
2 changed files with 76 additions and 76 deletions
150
Makefile.am
150
Makefile.am
|
@ -21,7 +21,7 @@ lib_LTLIBRARIES = \
|
||||||
parser/libobparser.la
|
parser/libobparser.la
|
||||||
|
|
||||||
bin_PROGRAMS = \
|
bin_PROGRAMS = \
|
||||||
kernel/openbox \
|
openbox/openbox \
|
||||||
tools/kdetrayproxy/kdetrayproxy
|
tools/kdetrayproxy/kdetrayproxy
|
||||||
|
|
||||||
if OBCONF
|
if OBCONF
|
||||||
|
@ -84,9 +84,9 @@ parser_libobparser_la_SOURCES = \
|
||||||
parser/parse.h \
|
parser/parse.h \
|
||||||
parser/parse.c
|
parser/parse.c
|
||||||
|
|
||||||
## kernel ##
|
## openbox ##
|
||||||
|
|
||||||
kernel_openbox_CPPFLAGS = \
|
openbox_openbox_CPPFLAGS = \
|
||||||
$(X_CFLAGS) \
|
$(X_CFLAGS) \
|
||||||
$(SM_CFLAGS) \
|
$(SM_CFLAGS) \
|
||||||
$(XFT_CFLAGS) \
|
$(XFT_CFLAGS) \
|
||||||
|
@ -97,7 +97,7 @@ kernel_openbox_CPPFLAGS = \
|
||||||
-DLOCALEDIR=\"$(localedir)\" \
|
-DLOCALEDIR=\"$(localedir)\" \
|
||||||
-DRCDIR=\"$(rcdir)\" \
|
-DRCDIR=\"$(rcdir)\" \
|
||||||
-DG_LOG_DOMAIN=\"Openbox\"
|
-DG_LOG_DOMAIN=\"Openbox\"
|
||||||
kernel_openbox_LDADD = \
|
openbox_openbox_LDADD = \
|
||||||
$(SM_LIBS) \
|
$(SM_LIBS) \
|
||||||
$(XINERAMA_LIBS) \
|
$(XINERAMA_LIBS) \
|
||||||
$(XKB_LIBS) \
|
$(XKB_LIBS) \
|
||||||
|
@ -112,78 +112,78 @@ kernel_openbox_LDADD = \
|
||||||
$(LIBINTL) \
|
$(LIBINTL) \
|
||||||
render/libobrender.la \
|
render/libobrender.la \
|
||||||
parser/libobparser.la
|
parser/libobparser.la
|
||||||
kernel_openbox_LDFLAGS = -export-dynamic
|
openbox_openbox_LDFLAGS = -export-dynamic
|
||||||
kernel_openbox_SOURCES = \
|
openbox_openbox_SOURCES = \
|
||||||
gettext.h \
|
gettext.h \
|
||||||
kernel/action.c \
|
openbox/action.c \
|
||||||
kernel/action.h \
|
openbox/action.h \
|
||||||
kernel/client.c \
|
openbox/client.c \
|
||||||
kernel/client.h \
|
openbox/client.h \
|
||||||
kernel/client_list_menu.c \
|
openbox/client_list_menu.c \
|
||||||
kernel/client_list_menu.h \
|
openbox/client_list_menu.h \
|
||||||
kernel/client_menu.c \
|
openbox/client_menu.c \
|
||||||
kernel/client_menu.h \
|
openbox/client_menu.h \
|
||||||
kernel/config.c \
|
openbox/config.c \
|
||||||
kernel/config.h \
|
openbox/config.h \
|
||||||
kernel/debug.c \
|
openbox/debug.c \
|
||||||
kernel/debug.h \
|
openbox/debug.h \
|
||||||
kernel/dock.c \
|
openbox/dock.c \
|
||||||
kernel/dock.h \
|
openbox/dock.h \
|
||||||
kernel/event.c \
|
openbox/event.c \
|
||||||
kernel/event.h \
|
openbox/event.h \
|
||||||
kernel/extensions.c \
|
openbox/extensions.c \
|
||||||
kernel/extensions.h \
|
openbox/extensions.h \
|
||||||
kernel/focus.c \
|
openbox/focus.c \
|
||||||
kernel/focus.h \
|
openbox/focus.h \
|
||||||
kernel/frame.c \
|
openbox/frame.c \
|
||||||
kernel/frame.h \
|
openbox/frame.h \
|
||||||
kernel/framerender.c \
|
openbox/framerender.c \
|
||||||
kernel/framerender.h \
|
openbox/framerender.h \
|
||||||
kernel/geom.h \
|
openbox/geom.h \
|
||||||
kernel/grab.c \
|
openbox/grab.c \
|
||||||
kernel/grab.h \
|
openbox/grab.h \
|
||||||
kernel/group.c \
|
openbox/group.c \
|
||||||
kernel/group.h \
|
openbox/group.h \
|
||||||
kernel/keyboard.c \
|
openbox/keyboard.c \
|
||||||
kernel/keyboard.h \
|
openbox/keyboard.h \
|
||||||
kernel/keytree.c \
|
openbox/keytree.c \
|
||||||
kernel/keytree.h \
|
openbox/keytree.h \
|
||||||
kernel/menuframe.c \
|
openbox/menuframe.c \
|
||||||
kernel/menuframe.h \
|
openbox/menuframe.h \
|
||||||
kernel/menu.c \
|
openbox/menu.c \
|
||||||
kernel/menu.h \
|
openbox/menu.h \
|
||||||
kernel/misc.h \
|
openbox/misc.h \
|
||||||
kernel/mouse.c \
|
openbox/mouse.c \
|
||||||
kernel/mouse.h \
|
openbox/mouse.h \
|
||||||
kernel/moveresize.c \
|
openbox/moveresize.c \
|
||||||
kernel/moveresize.h \
|
openbox/moveresize.h \
|
||||||
kernel/mwm.h \
|
openbox/mwm.h \
|
||||||
kernel/openbox.c \
|
openbox/openbox.c \
|
||||||
kernel/openbox.h \
|
openbox/openbox.h \
|
||||||
kernel/place.c \
|
openbox/place.c \
|
||||||
kernel/place.h \
|
openbox/place.h \
|
||||||
kernel/popup.c \
|
openbox/popup.c \
|
||||||
kernel/popup.h \
|
openbox/popup.h \
|
||||||
kernel/prop.c \
|
openbox/prop.c \
|
||||||
kernel/prop.h \
|
openbox/prop.h \
|
||||||
kernel/resist.c \
|
openbox/resist.c \
|
||||||
kernel/resist.h \
|
openbox/resist.h \
|
||||||
kernel/screen.c \
|
openbox/screen.c \
|
||||||
kernel/screen.h \
|
openbox/screen.h \
|
||||||
kernel/session.c \
|
openbox/session.c \
|
||||||
kernel/session.h \
|
openbox/session.h \
|
||||||
kernel/stacking.c \
|
openbox/stacking.c \
|
||||||
kernel/stacking.h \
|
openbox/stacking.h \
|
||||||
kernel/startup.c \
|
openbox/startup.c \
|
||||||
kernel/startup.h \
|
openbox/startup.h \
|
||||||
kernel/timer.c \
|
openbox/timer.c \
|
||||||
kernel/timer.h \
|
openbox/timer.h \
|
||||||
kernel/translate.c \
|
openbox/translate.c \
|
||||||
kernel/translate.h \
|
openbox/translate.h \
|
||||||
kernel/window.c \
|
openbox/window.c \
|
||||||
kernel/window.h \
|
openbox/window.h \
|
||||||
kernel/xerror.c \
|
openbox/xerror.c \
|
||||||
kernel/xerror.h
|
openbox/xerror.h
|
||||||
|
|
||||||
## obconf ##
|
## obconf ##
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
AC_PREREQ([2.54])
|
AC_PREREQ([2.54])
|
||||||
AC_INIT([openbox], [3.0-alpha6], [http://bugzilla.icculus.org])
|
AC_INIT([openbox], [3.0-alpha6], [http://bugzilla.icculus.org])
|
||||||
AM_INIT_AUTOMAKE
|
AM_INIT_AUTOMAKE
|
||||||
AC_CONFIG_SRCDIR([kernel/openbox.c])
|
AC_CONFIG_SRCDIR([openbox/openbox.c])
|
||||||
|
|
||||||
AC_PREFIX_DEFAULT([/usr/local])
|
AC_PREFIX_DEFAULT([/usr/local])
|
||||||
test "$prefix" = "NONE" && prefix=$ac_default_prefix
|
test "$prefix" = "NONE" && prefix=$ac_default_prefix
|
||||||
|
|
Loading…
Reference in a new issue