1
2
3
4
5
6
7
8
9
10
|
# -*- make -*-
# FILE: "/diska/home/joze/src/tclreadline/Makefile.in"
# LAST MODIFICATION: "Wed Sep 8 20:55:22 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: "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
#
|
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
|
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
tcltags -a tclreadlineInit.tcl.in tclreadlineSetup.tcl.in
vimtags: tcltags
vimtags
tags: vimtags
|
|
>
|
>
|
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
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 \
tclreadlineCompleter.tcl
vimtags: tcltags
vimtags
tags: vimtags
|