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


1.1
date     90.04.26.21.28.43;  author martin;  state Exp;
branches ;
next     ;


desc
@   
@



1.1
log
@Initial revision
@
text
@#
# Makefile for tftpd
#

NETLIB	= net32.lib
CLIB	= c32.lib
BIN	= inet:serv
OBJ	= tftpd.o tftpsubs.o

.c.o:
	cc -DAMIGA +l -I//include $*.c

all:	tftpd

tftpd:	version.o a:lib/net/net32.lib
	ln +ss -m +q -o $@@ version.o $(OBJ) $(NETLIB) $(CLIB)

version.o: $(OBJ)
	vers >version.c -v tftpd
	cc version.c

clean:
	delete #?.o

install:	tftpd
	copy tftpd $(BIN) clone
@
