head     38.0;
branch   ;
access   ;
symbols  Release1:1.8;
locks    ; strict;
comment  @# @;


38.0
date     93.04.13.11.30.35;  author bj;  state Exp;
branches ;
next     37.17;

37.17
date     92.05.27.15.57.20;  author bj;  state Exp;
branches ;
next     1.11;

1.11
date     91.08.06.13.21.28;  author bj;  state Exp;
branches ;
next     1.10;

1.10
date     91.08.05.13.53.59;  author bj;  state Exp;
branches ;
next     1.9;

1.9
date     91.04.24.15.16.54;  author bj;  state Exp;
branches ;
next     1.8;

1.8
date     90.12.05.16.12.16;  author bj;  state Exp;
branches ;
next     1.7;

1.7
date     90.12.02.21.12.31;  author martin;  state Exp;
branches ;
next     1.6;

1.6
date     90.12.02.06.10.12;  author martin;  state Exp;
branches ;
next     1.5;

1.5
date     90.12.02.06.07.20;  author martin;  state Exp;
branches ;
next     1.4;

1.4
date     90.12.01.22.03.16;  author martin;  state Exp;
branches ;
next     1.3;

1.3
date     90.11.28.00.31.36;  author bj;  state Exp;
branches ;
next     1.2;

1.2
date     90.11.13.15.38.08;  author bj;  state Exp;
branches ;
next     1.1;

1.1
date     90.11.11.22.06.25;  author bj;  state Exp;
branches ;
next     ;


desc
@@


38.0
log
@makefile for V38 rlogin (complete rewrite)
@
text
@# -----------------------------------------------------------------------
# makefile     for rlogin v38.xx
#
# $Locker:$
#
# $Id:$
#
# $Revision:$
#
# $Log:$
#
# $Header:$
#
#------------------------------------------------------------------------
#

OBJ	  = main.o mainloop.o mysprintf.o support.o console.o getprefs.o sockets.o clip.o newlist.o menus.o

.asm.o:
	casm -a $*.asm -cqvy -iinc:  -o $*.o

.c.o:
	lc -v -b1 -O -cfist -iNETINC: $*.c

all: rlogin

rlogin:	$(OBJ) makefile rl.h
	blink from $(OBJ) to rlogin SC SD ND

clean:
	delete #?.o

bump:
	bumprev 38 rlogin_rev

@


37.17
log
@1. Chanhed all references to '.l' files to '.o' files. This was left
   over from when we used both Manx and Lattice and needed to tell the
   object files apart.
2. Added 'mysprintf.o' to the OBJ line.
@
text
@d1 2
d4 1
a4 1
# Makefile for rlogin (Lattice)
d6 1
a6 1
# $Locker: bj $
d8 11
a18 47
# $Log:	makefile,v $
# Revision 1.11  91/08/06  13:21:28  bj
# details (again)
# 
# Revision 1.10  91/08/05  13:53:59  bj
# Details. 
# 
# Revision 1.9  91/04/24  15:16:54  bj
# bumprev to 37
# 
# Revision 1.8  90/12/05  16:12:16  bj
# details
# 
# Revision 1.7  90/12/02  21:12:31  martin
# *** empty log message ***
# 
# Revision 1.6  90/12/02  06:10:12  martin
# *** empty log message ***
# 
# Revision 1.5  90/12/02  06:07:20  martin
# *** empty log message ***
# 
# Revision 1.4  90/12/01  22:03:16  martin
# fixed to copy executable to NETBIN
# 
# Revision 1.3  90/11/28  00:31:36  bj
# Debug lines added (commented out) for using CodeProbe
# 
# Revision 1.2  90/11/13  15:38:08  bj
# fixed library name.
# 
# Revision 1.1  90/11/11  22:06:25  bj
# Initial revision
# 
#
# $Header: HOG:Other/inet/src/c/rlogin/RCS/makefile,v 1.11 91/08/06 13:21:28 bj Exp Locker: bj $
#         
# -----------------------------------------------------------------------------
# lattice linker library on the server

NETINC  = NETINC:
NETBIN  = NETBIN:c
NETLIB  = NETLIB:socketS.lib
CLIB    = c32.lib
BIN     = inet:c
OBJL    = _main.o rlogin.o console.o mysprintf.o
 
d20 1
a20 1
        casm -a $*.asm -cqvy -o $*.o
d23 1
a23 3
	lc -v -cst -b1 -O $(CFLAGS) -i$(NETINC) -o$*.o $*.c

all:	rlogin
d25 1
d27 2
a28 7
rlogin: $(OBJL) version.o
	blink from lib:c.o $(OBJL) version.o \
			lib lib:lc.lib lib:amiga.lib to rlogin SC SD ND

version.o: $(OBJL)
	vers >version.c -v rlogin
	lc -oversion.o version.c
a29 1

d31 1
a31 4
	delete *.o

install:	rlogin
	copy rlogin $(NETBIN) clone
d33 2
a34 2
bump: 
	bumprev 37 rlogin_rev
@


1.11
log
@details (again)
@
text
@d4 1
a4 1
# $Locker:  $
d7 3
d41 1
a41 1
# $Header: HOG:Other/inet/src/c/rlogin/RCS/makefile,v 1.10 91/08/05 13:53:59 bj Exp $
d51 1
a51 1
OBJL    = _main.l rlogin.l console.l
d53 3
d57 1
a57 4
	cc -DAMIGA  +l -I$(NETINC) $*.c

.c.l:
	lc -v -cst -b1 -O $(CFLAGS) -i$(NETINC) -o$*.l $*.c
d59 1
a59 1
all:	rloginl
d62 2
a63 2
rloginl: $(OBJL) version.l
	blink from lib:c.o $(OBJL) version.l \
d66 1
a66 1
version.l: $(OBJL)
d68 1
a68 1
	lc -oversion.l version.c
d72 1
a72 1
	delete *.l
@


1.10
log
@Details. 
@
text
@d7 3
d38 1
a38 1
# $Header: HOG:Other/inet/src/c/rlogin/RCS/makefile,v 1.9 91/04/24 15:16:54 bj Exp $
d61 1
a61 1
			lib lib:lc.lib lib:amiga.lib lib:debug.lib to rlogin SC SD ND
d69 1
a69 1
	delete #?.l
@


1.9
log
@bumprev to 37
@
text
@d7 3
d35 1
a35 1
# $Header: HOG:Other/inet/src/c/rlogin/RCS/makefile,v 1.8 90/12/05 16:12:16 bj Exp $
d42 4
a45 4
NETLIB	= NETLIB:socketS.lib
CLIB	= c32.lib
BIN	= inet:c
OBJL	= _main.l rlogin.l console.l
a51 1
#	lc -b1 -d5 $(CFLAGS) -i$(NETINC) -o$*.l $*.c
d55 1
d58 1
a58 3
			lib $(NETLIB) \
			lib:lc.lib lib:amiga.lib to rlogin SC SD ND
#			lib:lc.lib lib:amiga.lib to rlogin ADDSYM
@


1.8
log
@details
@
text
@d4 1
a4 1
# $Locker: bj $
d7 3
d32 1
a32 1
# $Header: HOG:Other/inet/src/c/rlogin/RCS/makefile,v 1.7 90/12/02 21:12:31 martin Exp Locker: bj $
d71 1
a71 1
	bumprev 36 rlogin_rev
@


1.7
log
@*** empty log message ***
@
text
@d4 1
a4 1
# $Locker: martin $
d7 3
d29 1
a29 1
# $Header: inet2:src/c/rlogin/RCS/makefile,v 1.6 90/12/02 06:10:12 martin Exp Locker: martin $
d50 1
a50 1
rlogin: $(OBJL) version.l
@


1.6
log
@*** empty log message ***
@
text
@d7 3
d26 1
a26 1
# $Header: inet2:src/c/rlogin/RCS/makefile,v 1.5 90/12/02 06:07:20 martin Exp Locker: martin $
d50 1
a50 1
			lib:lc.lib lib:amiga.lib to rlogin NODEBUG
d59 1
a59 1
	delete #?.o
@


1.5
log
@*** empty log message ***
@
text
@d7 3
d23 1
a23 1
# $Header: inet2:src/c/rlogin/RCS/makefile,v 1.4 90/12/01 22:03:16 martin Exp Locker: martin $
d39 1
a39 1
	lc -v -cfs -b1 -O $(CFLAGS) -i$(NETINC) -o$*.l $*.c
@


1.4
log
@fixed to copy executable to NETBIN
@
text
@d7 3
d20 1
a20 1
# $Header: inet2:src/c/rlogin/RCS/makefile,v 1.3 90/11/28 00:31:36 bj Exp Locker: martin $
d36 1
a36 1
	lc -b1 -O $(CFLAGS) -i$(NETINC) -o$*.l $*.c
@


1.3
log
@Debug lines added (commented out) for using CodeProbe
@
text
@d4 1
a4 1
# $Locker: bj $
d7 3
d17 1
a17 1
# $Header: HOG:Other/inet/src/c/rlogin/RCS/makefile,v 1.2 90/11/13 15:38:08 bj Exp Locker: bj $
a24 1
#NETLIB	= al:c/rlogin/test/lib/socketS.lib
d38 1
a38 1
rloginl: $(OBJL) version.l
d52 2
a53 2
install:	rloginl
	copy rlogin $(BIN) clone
@


1.2
log
@fixed library name.
@
text
@d4 1
a4 1
# $Locker:  $
d7 3
d14 1
a14 1
# $Header: HOG:Other/inet/src/c/rlogin/RCS/makefile,v 1.1 90/11/11 22:06:25 bj Exp $
d22 1
d28 1
a28 1
	cc -DAMIGA +l -I//include $*.c
d31 2
a32 1
	lc -b1 -O $(CFLAGS) -i//include -o$*.l $*.c
d40 1
@


1.1
log
@Initial revision
@
text
@d6 4
a9 1
# $Log:	$
d11 1
a11 1
# $Header$
d18 1
a18 1
NETLIB	= NETLIB:socketS.library
d22 1
a22 1

@
