b9cc5b7cb1
Commented out the feature (you didn't think I would reimplement it, did you ?) :) And took the opportunity of touching Makefile.am for including *.moc in *.cpp (faster compilation, smaller link lines, less files...) svn path=/trunk/kdebase/kwin/; revision=52667
37 lines
716 B
Makefile
37 lines
716 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 events.cpp KWinInterface.skel
|
|
#killwindow.cpp
|
|
kwin_la_LIBADD = $(LIB_KDEUI)
|
|
kwin_la_LDFLAGS = $(all_libraries) -module -avoid-version
|
|
|
|
include_HEADERS = KWinInterface.h
|
|
|
|
kwin_SOURCES = dummy.cpp
|
|
kwin_LDADD = kwin.la
|
|
kwin_LDFLAGS = $(all_libraries) $(KDE_RPATH)
|
|
|
|
KDE_ICON = kwin
|
|
|
|
METASOURCES = AUTO
|
|
|
|
messages:
|
|
$(XGETTEXT) -kaliasLocal *.h *.cpp -o $(podir)/kwin.pot
|
|
|
|
datadir = $(kde_datadir)/kwin
|
|
|
|
data_DATA= eventsrc
|
|
|
|
sounddir= $(kde_sounddir)
|
|
sound_DATA = pop.wav
|
|
|
|
dummy.cpp:
|
|
echo > dummy.cpp
|
|
|