ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libptytty/src/Makefile.in
Revision: 1.13
Committed: Sun Jan 22 11:54:23 2006 UTC (18 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.12: +7 -15 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.2 prefix = @prefix@
2     exec_prefix = @exec_prefix@
3     bindir = @bindir@
4     libdir = @libdir@
5     includedir = @includedir@
6     INSTALL = @INSTALL@
7     INSTALL_PROGRAM = @INSTALL@ -m 755
8     INSTALL_DATA = @INSTALL@ -m 644
9     CXXFLAGS = @CXXFLAGS@
10     CPPFLAGS = @CPPFLAGS@
11     LDFLAGS = @LDFLAGS@
12     LIBS = @LIBS@
13     COMPILE = $(CXX) $(CPPFLAGS) $(CXXFLAGS) -I.
14 ayin 1.5 LINK = $(CXX) $(LDFLAGS)
15 root 1.2
16     srcdir = @srcdir@
17     VPATH = @srcdir@
18     .PATH: @srcdir@
19    
20     top_builddir = ..
21     basedir = ..
22     thisdir = src
23    
24 ayin 1.13 .SUFFIXES: .lo
25 root 1.2
26     #-------------------------------------------------------------------------
27     # inference rules
28 ayin 1.9 .C.lo:
29 ayin 1.10 libtool --mode=compile $(COMPILE) -c $<
30 ayin 1.9
31 root 1.2 #-------------------------------------------------------------------------
32    
33     all: allbin
34    
35 ayin 1.13 libptytty_objects = ptytty.lo logging.lo fdpass.lo
36    
37     libptytty.la: $(libptytty_objects)
38     libtool --mode=link $(LINK) -rpath $(libdir) -o $@ $(libptytty_objects)
39 root 1.2
40     #-------------------------------------------------------------------------
41    
42     tags: *.[Ch]
43 ayin 1.8 ctags *.[Ch]
44 root 1.2
45     TAGS: *.[Ch]
46 ayin 1.8 etags *.[Ch]
47 root 1.2
48 ayin 1.13 allbin: libptytty.la
49 root 1.2
50     alldoc:
51    
52     clean:
53 ayin 1.13 rm -rf *.o *.lo *.la *~ .libs
54 root 1.2
55     realclean: clean
56 root 1.7 rm -f tags TAGS
57 root 1.2
58     cleandir: realclean
59    
60     distclean: realclean
61 root 1.7 (cd $(srcdir); rm -f Makefile)
62 root 1.2
63     install: allbin alldoc install-perl
64     # $(INSTALL) -d $(DESTDIR)$(bindir)
65     # $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
66     # $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
67     # $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
68    
69     depend:
70     makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
71     makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
72    
73     # DO NOT DELETE: nice dependency list follows
74    
75 root 1.6 fdpass.o: ../config.h libptytty.h
76     logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h
77     ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h
78 root 1.2
79 root 1.6 fdpass.lo: ../config.h libptytty.h
80     logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h
81     ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h