blob: aa0c1b04efe4da99baf7522c5a7b61fff00fd8bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
## Process this file with automake to produce Makefile.in.
# Copyright 2007 Johannes Lehtinen
# This Makefile is free software; Johannes Lehtinen gives unlimited
# permission to copy, distribute and modify it.
LIBS = @LIBS_OTHER@ @LIBS@
EXTRA_DIST = plugin.xml
plugindir = /plugins/callbackcounter
plugin_LTLIBRARIES = libruntime.la
plugin_DATA = plugin.xml
libruntime_la_SOURCES = callbackcounter.c callbackcounter.h
libruntime_la_LDFLAGS = -module -avoid-version
|