File: Makefile.am

package info (click to toggle)
libquvi 0.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,960 kB
  • sloc: sh: 12,286; ansic: 9,521; makefile: 653; sed: 16
file content (30 lines) | stat: -rw-r--r-- 561 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
src=\
  chk.c\
  cleanup.c\
  enable_autoproxy.c\
  enable_cookies.c\
  enable_verbose.c\
  exit_if_error.c\
  status.c\
  var.c

hdr=examples.h

noinst_LTLIBRARIES=libconvenience_example.la
libconvenience_example_la_SOURCES=$(src) $(hdr)

libconvenience_example_la_CPPFLAGS=\
  -I$(top_srcdir)/examples/lib/\
  -I$(top_srcdir)/src/quvi-0.9/\
  $(libcurl_CFLAGS)\
  $(glib_CFLAGS)\
  $(AM_CPPFLAGS)

libconvenience_example_la_LDFLAGS=\
  $(AM_LDFLAGS)

libconvenience_example_la_LIBADD=\
  $(libcurl_LIBS)\
  $(glib_LIBS)

# vim: set ts=2 sw=2 tw=72 expandtab: