#
# Makefile     			For the NYS YP (NIS version 2) server
#
# Copyright (c) 1993 Signum Support AB, Sweden
#
# This file is part of the NYS YP Server.
#
# The NYS YP Server is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# The NYS YP Server is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
# 
# You should have received a copy of the GNU General Public
# License along with the NYS YP Server; see the file COPYING.  If
# not, write to the Free Software Foundation, Inc., 675 Mass Ave,
# Cambridge, MA 02139, USA.
#
# Author: Peter Eriksson <pen@signum.se>
#

CC=gcc

PROGS=ypserv dbload dbcat dbnext
OBJS=server.o yp_svc.o yp_xdr.o

all:	$(PROGS)

ypserv:	$(OBJS)
	gcc -o ypserv $(OBJS) -ldbm

dbload:	dbload.c
	gcc -o dbload dbload.c -ldbm

dbnext:	dbnext.c
	gcc -o dbnext dbnext.c -ldbm

dbcat:	dbcat.c
	gcc -o dbcat dbcat.c -ldbm

clean:
	rm -f $(PROGS) core *~ *.o
