1
2
3
4
5
6
7
8
9
10
|
# -*- make -*-
# FILE: "/home/joze/src/tclreadline/Makefile.in"
# LAST MODIFICATION: "Sat Aug 21 00:21:27 1999 (joze)"
# (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org>
# $Id$
# ---
#
# tclreadline -- gnu readline for tcl
# Copyright (C) 1999 Johannes Zellner
#
|
|
|
|
1
2
3
4
5
6
7
8
9
10
|
# -*- make -*-
# FILE: "/diska/home/joze/src/tclreadline/Makefile.in"
# LAST MODIFICATION: "Mon Aug 23 17:10:16 1999 (joze)"
# (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org>
# $Id$
# ---
#
# tclreadline -- gnu readline for tcl
# Copyright (C) 1999 Johannes Zellner
#
|
︙ | | | ︙ | |
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
RANLIB = @RANLIB@
TOP_DIR = $(srcdir)
TCL_INCLUDE_DIR = @TCL_INCLUDE_DIR@
READLINE_INCLUDE_DIR = @READLINE_INCLUDE_DIR@
TCLREADLINE_LIB_FILE = @TCLREADLINE_LIB_FILE@
READLINE_LIB = -L@READLINE_LIB_DIR@ -lreadline
TERMCAP_LIB = -L@TERMCAP_LIB_DIR@ -l@TERMCAP_LIB@
#----------------------------------------------------------------
# The information below should be usable as is. The configure
# script won't modify it and you shouldn't need to modify it
# either.
#----------------------------------------------------------------
|
|
|
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
RANLIB = @RANLIB@
TOP_DIR = $(srcdir)
TCL_INCLUDE_DIR = @TCL_INCLUDE_DIR@
READLINE_INCLUDE_DIR = @READLINE_INCLUDE_DIR@
TCLREADLINE_LIB_FILE = @TCLREADLINE_LIB_FILE@
READLINE_LIB = -L@READLINE_LIB_DIR@ -lreadline
TERM_LIB = @TERM_LIB@
#----------------------------------------------------------------
# The information below should be usable as is. The configure
# script won't modify it and you shouldn't need to modify it
# either.
#----------------------------------------------------------------
|
︙ | | | ︙ | |
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
.SUFFIXES: .c .o .so .sl .tcl
all: $(TCLREADLINE_LIB_FILE)
@TCLREADLINE_LIB_FILE@: ${OBJS}
rm -f $(TCLREADLINE_LIB_FILE)
@MAKE_LIB@ $(TERMCAP_LIB) $(READLINE_LIB)
$(RANLIB) $(TCLREADLINE_LIB_FILE)
install: install-binaries install-libraries install-man
install-man: $(MANN_INSTALL_DIR)/$(MAN)
install-binaries: $(TCLREADLINE_LIB_FILE)
@$(MKINSTALLDIRS) $(LIBRARY_INSTALL_DIR)
|
|
|
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
.SUFFIXES: .c .o .so .sl .tcl
all: $(TCLREADLINE_LIB_FILE)
@TCLREADLINE_LIB_FILE@: ${OBJS}
rm -f $(TCLREADLINE_LIB_FILE)
@MAKE_LIB@ $(TERM_LIB) $(READLINE_LIB)
$(RANLIB) $(TCLREADLINE_LIB_FILE)
install: install-binaries install-libraries install-man
install-man: $(MANN_INSTALL_DIR)/$(MAN)
install-binaries: $(TCLREADLINE_LIB_FILE)
@$(MKINSTALLDIRS) $(LIBRARY_INSTALL_DIR)
|
︙ | | | ︙ | |
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
clean:
rm -f *.a *.o core errs *~ \#* tags* *.E a.out errors so_locations
distclean: clean
rm -f \
Makefile *.so *.sl pkgIndex.tcl tclreadlineInit.tcl \
tclreadlineSetup.tcl\
tclreadlineConfig.sh config.status config.log config.cache
depend:
makedepend -- $(CC_SWITCHES) -- $(CSRCS)
configure: configure.in
autoconf
|
|
|
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
clean:
rm -f *.a *.o core errs *~ \#* tags* *.E a.out errors so_locations
distclean: clean
rm -f \
Makefile *.so *.sl pkgIndex.tcl tclreadlineInit.tcl \
tclreadlineSetup.tcl tclreadline.h tclreadline.n \
tclreadlineConfig.sh config.status config.log config.cache
depend:
makedepend -- $(CC_SWITCHES) -- $(CSRCS)
configure: configure.in
autoconf
|
︙ | | | ︙ | |