blob: 01aeca4923ad82497dc134cb4612c5a8399e2c3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
####### Fiddle here
AM_CPPFLAGS = -DQT_NO_CAST_ASCII -DQT_CLEAN_NAMESPACE -DQT_NO_COMPAT
INCLUDES = $(all_includes)
####### Files
bin_PROGRAMS = kstart
kstart_SOURCES = kstart.cpp
kstart_LDFLAGS = $(all_libraries) $(KDE_RPATH)
kstart_LDADD = $(LIB_KDECORE)
METASOURCES = kstart.moc
noinst_HEADERS = kstart.h version.h
messages:
$(XGETTEXT) $(kstart_SOURCES) -o $(podir)/kstart.pot
EXTRA_DIST = CHANGES LICENSE.readme
|