# $Id: Smakefile,v 3.1 1994/02/25 15:00:05 ppessi Exp $
#
# Smakefile for AmiTCP/IP utility libraries
#
# Copyright  1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
#	           Helsinki University of Technology, Finland.
#                  All rights reserved.
#
# Created      : Thu Feb 24 18:10:11 1994 ppessi
# Last modified: Fri Feb 25 00:54:15 1994 ppessi
#
# $Log: Smakefile,v $
# Revision 3.1  1994/02/25  15:00:05  ppessi
# Initial revision.
#

DEST = AmiTCP:

#
# These will be made
#
LIBS = usergroup/usergroup.library

MAKELINK = makelink
MKDIR = makedir
MAKE= smake -k
RM   = delete
CP = copy dates

all: $(LIBS)

usergroup/usergroup.library:
	execute < <
	cd usergroup
	$(MAKE)
<

clean:
	execute < <
	cd usergroup
	$(MAKE) clean
<

cleaner: clean
	-$(RM) $(LIBS) 

install: 
	execute < <
	cd usergroup
	$(MAKE) DEST=$(DEST) install
<
