# RCSid: $Header: /rcs/vcom/sbeux/x25test/xxx/Makefile,v 1.1 91/09/19 11:00:23 root Rel $

#-----------------------------------------------------------------------------
# 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.1 $
# Last changed on $Date: 91/09/19 11:00:23 $
# Changed by $Author: root $
#-----------------------------------------------------------------------------
# $Log:	Makefile,v $
# Revision 1.1  91/09/19  11:00:23  root
# Add program data generator.
# 
#-----------------------------------------------------------------------------
#

#  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
