File: Makefile.am

package info (click to toggle)
sweep 0.9.3-6
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,400 kB
  • sloc: ansic: 36,275; sh: 9,980; makefile: 688; yacc: 288; sed: 16
file content (19 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## Process this file with automake to produce Makefile.in

INCLUDES = -I$(top_srcdir)/include \
			 @GTK_CFLAGS@

libdir = $(PACKAGE_PLUGIN_DIR)

lib_LTLIBRARIES = \
	libreverse.la

libreverse_la_SOURCES = reverse.c
libreverse_la_LDFLAGS = -avoid-version -module

install: all
	mkdir -p $(DESTDIR)/$(libdir)
	$(INSTALL_PROGRAM) .libs/libreverse.so $(DESTDIR)/$(libdir);

uninstall:
	rm -f $(DESTDIR)/$(libdir)/libreverse.so