6f0d6ab59b
Anyway, this is the eventsrc for the kwin events (window shadow, minimize, etc). I've not connected any of the code to KWin itself because I don't feel like damaging it :). KConfig is broken, so foo to the kcontrol module until someone feels like fixing it, which, most certainly, does not include me. I've got a teeny tiny addition to make to KNotifyClient (so to make it start the KNotify daemon if/when needed.) And I think "we" should patch Linux's ld.so so that it caches references to functions. I believe this will speed up startup times significantly. Why am I ranting on a cvs commit off-topicly? Well. I'm aware of my weirdness. What're you going to do about it? :) svn path=/trunk/kdebase/kwin/; revision=47402
30 lines
606 B
Makefile
30 lines
606 B
Makefile
|
|
INCLUDES = $(all_includes)
|
|
|
|
SUBDIRS = pics clients
|
|
|
|
bin_PROGRAMS = kwin
|
|
lib_LTLIBRARIES = kwin.la
|
|
|
|
kwin_la_SOURCES = atoms.cpp client.cpp main.cpp stdclient.cpp workspace.cpp tabbox.cpp options.cpp plugins.cpp
|
|
kwin_la_LIBADD = $(LIB_KDEUI)
|
|
kwin_la_LDFLAGS = $(all_libraries) -module -avoid-version
|
|
|
|
kwin_SOURCES = dummy.cpp
|
|
kwin_LDADD = kwin.la
|
|
kwin_LDFLAGS = $(all_libraries) $(KDE_RPATH) -export-dynamic -rdynamic
|
|
|
|
KDE_ICON = kwin
|
|
|
|
METASOURCES = AUTO
|
|
|
|
messages:
|
|
$(XGETTEXT) -kaliasLocal *.h *.cpp -o $(podir)/kwin.pot
|
|
|
|
datadir = $(kde_datadir)/kwin
|
|
|
|
data_DATA= eventsrc
|
|
|
|
dummy.cpp:
|
|
echo > dummy.cpp
|
|
|