ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libptytty/src/Makefile.in
Revision: 1.4
Committed: Sat Jan 21 22:56:07 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.3: +7 -7 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     LINK = @LINKER@ $(LDFLAGS)
15    
16     srcdir = @srcdir@
17     VPATH = @srcdir@
18     .PATH: @srcdir@
19    
20     top_builddir = ..
21     basedir = ..
22     thisdir = src
23    
24     .SUFFIXES: .C .o
25    
26     #-------------------------------------------------------------------------
27     # inference rules
28     .C.o:
29     $(COMPILE) -c $<
30    
31     #.C.lo:
32     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
33     #
34     #.s.lo:
35     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
36     #
37     #.S.lo:
38     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
39    
40     #-------------------------------------------------------------------------
41    
42     all: allbin
43    
44 root 1.4 libptytty.a: ptytty.o logging.o fdpass.o
45     $(LINK) -o $@ $^ $(LIBS)
46 root 1.2 # $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
47    
48     #-------------------------------------------------------------------------
49    
50     tags: *.[Ch]
51     ctags $^
52    
53     TAGS: *.[Ch]
54     etags $^
55    
56 root 1.4 allbin: libptytty.a
57 root 1.2
58     alldoc:
59    
60     clean:
61     $(RMF) *.a *.o *.tmp *.la .libs
62    
63     realclean: clean
64     $(RMF) tags TAGS
65    
66     cleandir: realclean
67    
68     distclean: realclean
69     (cd $(srcdir); $(RMF) Makefile)
70    
71     install: allbin alldoc install-perl
72     # $(INSTALL) -d $(DESTDIR)$(bindir)
73     # $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
74     # $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
75     # $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
76    
77     depend:
78     makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
79     makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
80    
81     # DO NOT DELETE: nice dependency list follows
82    
83 root 1.3 fdpass.o: ../config.h fdpass.h
84 root 1.4 logging.o: ../config.h ptytty.h ptytty_conf.h
85     ptytty.o: ../config.h fdpass.h ptytty.h ptytty_conf.h
86 root 1.2
87 root 1.3 fdpass.lo: ../config.h fdpass.h
88 root 1.4 logging.lo: ../config.h ptytty.h ptytty_conf.h
89     ptytty.lo: ../config.h fdpass.h ptytty.h ptytty_conf.h