# RCSid: $Header: /rcs/vcom5.0/sbeux/x25test/xxx/Makefile,v 1.0 92/08/20 11:29:37 root Exp $

#-----------------------------------------------------------------------------
# Makefile -
#
# Copyrighted as an unpublished work.
# (c) Copyright 1991 SBE, Inc. and by other vendors under license agreements.
# All rights reserved.
#-----------------------------------------------------------------------------
# RCS info:
# RCS revision: $Revision: 1.0 $
# Last changed on $Date: 92/08/20 11:29:37 $
# Changed by $Author: root $
#-----------------------------------------------------------------------------
# $Log:	Makefile,v $
# Revision 1.0  92/08/20  11:29:37  root
# Initial revision
# 
#-----------------------------------------------------------------------------
#

#  Network Configuration Command

DFLAGS=
TESTS = padtest

############################################################################
#  Assign LOCALINC to be the path to the directory containing the SBE
#  distributed "sys" header files.
############################################################################
LOCALINC = ../../include

INC      = -I. -I$(LOCALINC)
DEST     = /etc
CFLAGS   = -O $(INC) $(DPARMS)
LDFLAGS  = -s

CC= cc

all: $(TESTS) Makefile

padtest: padtest.o sbeRelease.o
	$(CC) $(LDFLAGS) -o padtest padtest.o sbeRelease.o

# -----------------------------------------------------------------------------

padtest.o: padtest.c \
	Makefile \
	$(LOCALINC)/sys/vcutil.h \
	$(LOCALINC)/sys/snet/uint.h \
	$(LOCALINC)/sys/snet/ll_proto.h \
	$(LOCALINC)/sys/snet/x25_proto.h \
	$(LOCALINC)/sys/snet/x25_control.h \
	$(FRC)

sbeRelease.o: sbeRelease.c

# -----------------------------------------------------------------------------

install:

clean:
	rm -f *.o

clobber:
	rm -f $(TESTS) *.o

# End-of-file
