blob: bc38a3caf7828ddf8faecfe7705be88c7f024dd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## Process this file with automake to produce Makefile.in
INCLUDES = \
@COMPIZ_CFLAGS@ \
-I$(top_srcdir)/include \
-I$(top_srcdir)/src \
-DPLUGINDIR=\"$(PLUGINDIR)\" \
-DLIBDIR=\"$(libdir)\"
libini_la_LDFLAGS = -module -avoid-version -no-undefined $(all_libraries)
libini_la_LIBADD = $(top_builddir)/src/libcompizconfig.la
libini_la_SOURCES = ini.c
backenddir = $(libdir)/compizconfig/backends
METASOURCES = AUTO
backend_LTLIBRARIES = libini.la
|