1
2
3
4
5
6
7
8
9
10
|
# -*- make -*-
# FILE: "/diska/home/joze/src/tclreadline/Makefile.in"
# LAST MODIFICATION: "Mon Sep 13 18:09:41 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: "/home/joze/src/tclreadline/Makefile.in"
# LAST MODIFICATION: "Mon Sep 20 00:50:49 1999 (joze)"
# (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org>
# $Id$
# ---
#
# tclreadline -- gnu readline for tcl
# Copyright (C) 1999 Johannes Zellner
#
|
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
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.
#----------------------------------------------------------------
|
|
>
|
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
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
TERMLIB = @TERMLIB@
TERMLIB_DIR = @TERMLIB_DIR@
#----------------------------------------------------------------
# The information below should be usable as is. The configure
# script won't modify it and you shouldn't need to modify it
# either.
#----------------------------------------------------------------
|
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
.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)
|
|
|
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
.SUFFIXES: .c .o .so .sl .tcl
all: $(TCLREADLINE_LIB_FILE)
@TCLREADLINE_LIB_FILE@: ${OBJS}
rm -f $(TCLREADLINE_LIB_FILE)
@MAKE_LIB@ $(TERMLIB_DIR) $(READLINE_LIB) $(TERMLIB)
$(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)
|