kwin/Makefile.am
Daniel M. Duley de782ec37b Implemented plugins :) This was a huge pain in the arse because a) I am stupid
and it kept segfaulting because I wasn't releasing windows, and b) The plugins
didn't want to resolve anything in the kwin executable, only to the other
libs. I finally solved this by using -rdynamic in kwin's LDFLAGS, which I hope
is okay ;-)

svn path=/trunk/kdebase/kwin/; revision=37234
1999-12-24 01:36:47 +00:00

19 lines
443 B
Makefile

INCLUDES = $(all_includes)
LDFLAGS = $(all_libraries) $(KDE_RPATH) -rdynamic
SUBDIRS = pics clients
bin_PROGRAMS = kwin
kwin_SOURCES = atoms.cpp client.cpp main.cpp stdclient.cpp workspace.cpp tabbox.cpp options.cpp plugins.cpp
kwin_LDADD = $(LIB_KDECORE) $(LIB_KDEUI)
KDE_ICON = kwin
METASOURCES = AUTO
messages:
$(XGETTEXT) -C -ktranslate -kaliasLocal -ki18n -x $(includedir)/kde.pot *.h *.cpp && mv messages.po $(podir)/kwin.pot