File: Makefile.am

package info (click to toggle)
adcli 0.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 764 kB
  • sloc: ansic: 11,503; xml: 1,363; makefile: 206; sh: 17
file content (29 lines) | stat: -rw-r--r-- 417 bytes parent folder | download
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
include $(top_srcdir)/Makefile.decl

AM_CPPFLAGS = \
	-I$(top_srcdir) \
	-I$(top_srcdir)/library \
	-DKRB5_CONFIG=\""$(sysconfdir)/krb5.conf"\" \
	$(NULL)

sbin_PROGRAMS =  \
	adcli \
	$(NULL)

adcli_SOURCES = \
	computer.c \
	entry.c \
	info.c \
	tools.c tools.h \
	$(NULL)

adcli_LDADD = \
	$(top_builddir)/library/libadcli.la \
	$(KRB5_LIBS) \
	$(LDAP_LIBS) \
	$(NULL)

CLEANFILES = \
	*.gcno \
	*.gcda \
	$(NULL)