ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/libptytty/Makefile.am
Revision: 1.9
Committed: Sat Jul 24 18:36:52 2021 UTC (5 years, 2 months ago) by sf-exg
Branch: MAIN
CVS Tags: HEAD
Changes since 1.8: +0 -0 lines
State: FILE REMOVED
Log Message:
Remove autotools build system

File Contents

# User Rev Content
1 sf-exg 1.1 AUTOMAKE_OPTIONS = foreign subdir-objects
2     ACLOCAL_AMFLAGS = -I .
3    
4 sf-exg 1.7 EXTRA_DIST = \
5     Changes \
6     README \
7     doc/libptytty.3 \
8     doc/libptytty.3.pod \
9     eg/c-sample.c \
10 sf-exg 1.8 libptytty.pc.in \
11 sf-exg 1.7 src/ecb.h \
12     src/estl.h \
13     src/ptytty.h \
14     src/ptytty_conf.h
15 sf-exg 1.1
16 sf-exg 1.8 pkgconfigdir = $(libdir)/pkgconfig
17     pkgconfig_DATA = libptytty.pc
18    
19 sf-exg 1.1 man_MANS = doc/libptytty.3
20    
21     include_HEADERS = src/libptytty.h
22    
23     lib_LTLIBRARIES = libptytty.la
24    
25 sf-exg 1.7 libptytty_la_SOURCES = \
26     src/c-api.C \
27     src/fdpass.C \
28     src/logging.C \
29     src/proxy.C \
30     src/ptytty.C
31 sf-exg 1.2
32 sf-exg 1.3 noinst_PROGRAMS = c-sample
33     c_sample_SOURCES = eg/c-sample.c
34     c_sample_LDADD = libptytty.la
35     c_sample_CPPFLAGS = -I$(top_srcdir)/src
36     c_sample_LINK = $(CXXLINK)
37    
38 sf-exg 1.5 $(srcdir)/doc/libptytty.3: $(srcdir)/doc/libptytty.3.pod
39 sf-exg 1.2 pod2man -n libptytty -r "$(VERSION)" -q\" -c LIBPTYTTY -s3 <$< >$@
40    
41 sf-exg 1.5 $(srcdir)/README: $(srcdir)/doc/libptytty.3.pod
42 sf-exg 1.2 pod2text <$< >$@
43    
44 sf-exg 1.5 alldoc: $(srcdir)/doc/libptytty.3 $(srcdir)/README