1
2
3
4
5
6
7
8
9
10
|
# -*- make -*-
# FILE: "/home/joze/src/tclreadline/Makefile.in"
# LAST MODIFICATION: "Wed Sep 8 21:06:25 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 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
#
|
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
#----------------------------------------------------------------
# The information below should be usable as is. The configure
# script won't modify it and you shouldn't need to modify it
# either.
#----------------------------------------------------------------
CC = @CC@
CC_SWITCHES = $(CFLAGS) $(SHLIB_CFLAGS) -I$(TOP_DIR) \
-I$(TCL_INCLUDE_DIR) -I$(READLINE_INCLUDE_DIR)
OBJS = tclreadline.o
CSRCS = $(TOP_DIR)/tclreadline.c
TCLFILES = tclreadlineInit.tcl tclreadlineSetup.tcl tclreadlineCompleter.tcl
SOURCES = \
GPL \
Makefile.in \
README \
configure.in \
pkgIndex.tcl.in \
sample.tclshrc \
sources \
tclreadline.c \
tclreadline.h.in \
tclreadline.n.in \
tclreadlineConfig.sh.in \
tclreadlineInit.tcl.in \
tclreadlineSetup.tcl.in \
tclreadlineCompleter.tcl
|
|
>
>
>
|
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
#----------------------------------------------------------------
# The information below should be usable as is. The configure
# script won't modify it and you shouldn't need to modify it
# either.
#----------------------------------------------------------------
CC = @CC@
DEFS = @DEFS@
CC_SWITCHES = $(CFLAGS) $(SHLIB_CFLAGS) -I$(TOP_DIR) \
-I$(TCL_INCLUDE_DIR) -I$(READLINE_INCLUDE_DIR)
OBJS = tclreadline.o
CSRCS = $(TOP_DIR)/tclreadline.c
TCLFILES = tclreadlineInit.tcl tclreadlineSetup.tcl tclreadlineCompleter.tcl
SOURCES = \
GPL \
Makefile.in \
README \
configure.in \
pkgIndex.tcl.in \
sample.tclshrc \
sources \
config.h.in \
tclreadline.c \
tclreadline.h.in \
tclreadline.n.in \
tclreadlineConfig.sh.in \
tclreadlineInit.tcl.in \
tclreadlineSetup.tcl.in \
tclreadlineCompleter.tcl
|
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
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
.c.o:
$(CC) -c $(CC_SWITCHES) $<
tclreadline.o: $(TOP_DIR)/tclreadline.c Makefile
$(CC) -c $(CC_SWITCHES) $(TOP_DIR)/tclreadline.c
ctags:
ctags -R
tcltags: ctags tclreadlineInit.tcl.in tclreadlineSetup.tcl.in \
tclreadlineCompleter.tcl
tcltags -a tclreadlineInit.tcl.in tclreadlineSetup.tcl.in \
|
|
<
<
<
|
<
|
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
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 config.h tclreadline.h tclreadline.n \
tclreadlineConfig.sh config.status config.log config.cache
depend:
makedepend -- $(CC_SWITCHES) -- $(CSRCS)
configure: configure.in
autoconf
tclreadline.o: $(TOP_DIR)/tclreadline.c Makefile
$(CC) -c $(CC_SWITCHES) $(DEFS) $(TOP_DIR)/tclreadline.c
ctags:
ctags -R
tcltags: ctags tclreadlineInit.tcl.in tclreadlineSetup.tcl.in \
tclreadlineCompleter.tcl
tcltags -a tclreadlineInit.tcl.in tclreadlineSetup.tcl.in \
|