File: Makefile.am

package info (click to toggle)
dcap 2.47.14-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,448 kB
  • sloc: ansic: 14,604; makefile: 312; python: 75; sh: 58
file content (23 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

if WANT_LIBGSITUNNEL
GSSAPI = gssapi
endif
if WANT_LIBGSSTUNNEL
GSSAPI = gssapi
endif
if WANT_LIBTELNETTUNNEL
TELNET = telnet
endif
if WANT_LIBSSLTUNNEL
SSL = ssl
endif

SUBDIRS = $(GSSAPI) $(TELNET) $(SSL)

.PHONY: tags
tags:
	make TAGS
	list=''; for subdir in "$list"; do \
	test "$subdir" = . || (cd $subdir && make tags); \
		echo $subdir; \
	done