blob: 4a23a37a415931f1eacbb36eacedf4d3214fcec5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Yaaay poorly-documented hackish magical software!
# (re: autoconf and automake and friends,
# not my own software, of course) -clee
AM_CPPFLAGS = -DQT_PLUGIN
METASOURCES = AUTO
INCLUDES = $(all_includes)
noinst_HEADERS = asteroid.h
kde_style_LTLIBRARIES = asteroid.la
asteroid_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
asteroid_la_LIBADD = -ltdefx -ltdeutils
asteroid_la_SOURCES = asteroid.cpp
themercdir = $(kde_datadir)/tdestyle/themes
themerc_DATA = asteroid.themerc
|