Check-in [915c7e11ba]
Not logged in
Overview
Comment: Makefile.in
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 915c7e11ba7eff71ea20fcd09b9f935860462f6c
User & Date: johannes@zellner.org on 1999-08-20 13:59:42
Other Links: manifest | tags
Context
1999-08-20
14:02
Makefile.in check-in: f21c4d1a65 user: johannes@zellner.org tags: trunk
13:59
Makefile.in check-in: 915c7e11ba user: johannes@zellner.org tags: trunk
13:53
Makefile.in README configure.in check-in: 4fd859be75 user: johannes@zellner.org tags: trunk
Changes

Modified Makefile.in from [4c0cb09a3f] to [f213287370].

1
2
3
4
5
6
7
8
9
10
# -*- make -*-
# FILE: "/diska/home/joze/src/tclreadline/Makefile.in"
# LAST MODIFICATION: "Fri Aug 20 15:51:56 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: "Fri Aug 20 15:59:31 1999 (joze)"
# (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org>
# $Id$
# ---
#
# tclreadline -- gnu readline for tcl
# Copyright (C) 1999  Johannes Zellner
#
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
AUXILIARY = \
    aux/config.guess \
    aux/config.sub \
    aux/install-sh \
    aux/mkinstalldirs \
    aux/vimtags

MISC = README GPL

MAN = tclreadline.n

CIFLAGS = -f -t-"gnu readline for tcl" -m"before initial relase"

.PHONY: clean distclean ctags tcltags vimtags tags ci co

.SUFFIXES: .c .o .so .sl .tcl







<
<







175
176
177
178
179
180
181


182
183
184
185
186
187
188
AUXILIARY = \
    aux/config.guess \
    aux/config.sub \
    aux/install-sh \
    aux/mkinstalldirs \
    aux/vimtags



MAN = tclreadline.n

CIFLAGS = -f -t-"gnu readline for tcl" -m"before initial relase"

.PHONY: clean distclean ctags tcltags vimtags tags ci co

.SUFFIXES: .c .o .so .sl .tcl
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279

vimtags: tcltags
	vimtags

tags: vimtags


ci: $(SOURCES) $(MISC)
	ci -u $(CIFLAGS) $^

co: $(SOURCES) $(MISC)
	co -l $^

distribution: $(SOURCES) configure $(AUXILIARY) $(MISC)
	- mkdir tclreadline-$(VERSION)
	- mkdir tclreadline-$(VERSION)/aux
	- cp $(SOURCES) $(MISC) configure tclreadline-$(VERSION)
	- cp $(AUXILIARY) tclreadline-$(VERSION)/aux
	tar zcvf $(srcdir)/tclreadline-$(VERSION).tgz tclreadline-$(VERSION)


# DO NOT DELETE THIS LINE -- make depend depends on it.







|


|


|
|
|
<
|
|



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271

272
273
274
275
276

vimtags: tcltags
	vimtags

tags: vimtags


ci: $(SOURCES)
	ci -u $(CIFLAGS) $^

co: $(SOURCES)
	co -l $^

distribution: $(SOURCES) configure $(AUXILIARY)
	- mkdir -p dist/tclreadline-$(VERSION)/aux
	- cp $(SOURCES) configure dist/tclreadline-$(VERSION)

	- cp $(AUXILIARY) dist/tclreadline-$(VERSION)/aux
	(cd dist; tar zcvf tclreadline-$(VERSION).tgz tclreadline-$(VERSION); rm -rf tclreadline-$(VERSION))


# DO NOT DELETE THIS LINE -- make depend depends on it.