~ubuntu-branches/ubuntu/hardy/lmms/hardy

« back to all changes in this revision

Viewing changes to plugins/kicker/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Tobias Doerffel
  • Date: 2007-09-17 15:00:24 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070917150024-mo0zk4ks81jawqii
Tags: 0.3.0-1ubuntu1
* Resynchronized with Debian (LP: #139759, LP: #90806, LP: #102639,
  LP: #113447, LP: #121172, LP: #124890)
* reverted changes from 0.2.1-1.1ubuntu1 as upstream merged/included them

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AUTOMAKE_OPTIONS = foreign 1.4
 
2
 
 
3
 
 
4
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/src/lib -I.
 
5
 
 
6
 
 
7
AM_CXXFLAGS := $(AM_CXXFLAGS) $(QT_CXXFLAGS) -DPLUGIN_NAME="kicker"
 
8
 
 
9
 
 
10
%.moc: ./%.h
 
11
        $(MOC) -o $@ $<
 
12
 
 
13
 
 
14
MOC_FILES = ./kicker.moc
 
15
 
 
16
BUILT_SOURCES = $(MOC_FILES) ./embedded_resources.h
 
17
EMBEDDED_RESOURCES = $(wildcard *png)
 
18
 
 
19
./embedded_resources.h: $(EMBEDDED_RESOURCES)
 
20
        $(BIN2RES) $(EMBEDDED_RESOURCES) > $@
 
21
 
 
22
EXTRA_DIST = $(EMBEDDED_RESOURCES)
 
23
 
 
24
 
 
25
CLEANFILES = $(MOC_FILES) ./embedded_resources.h
 
26
 
 
27
 
 
28
 
 
29
pkglib_LTLIBRARIES = libkicker.la
 
30
 
 
31
libkicker_la_SOURCES = kicker.cpp kicker.h
 
32
 
 
33
$(libkicker_la_SOURCES): ./embedded_resources.h