head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	93.02.25.17.04.34;	author md;	state Exp;
branches;
next	1.1;

1.1
date	88.12.09.19.14.07;	author md;	state Exp;
branches;
next	;


desc
@@


1.2
log
@convert to reno standards.
@
text
@#
# 5799-WZQ (C) COPYRIGHT IBM CORPORATION 1986,1987
# LICENSED MATERIALS - PROPERTY OF IBM
# REFER TO COPYRIGHT INSTRUCTIONS FORM NUMBER G120-2083
#
# $Header: /usr/src/ibm/aedtest/RCS/Makefile,v 1.1 1988/12/09 19:14:07 md Exp $ 
# $ACIS:Makefile 12.0$ 
# $Source: /usr/src/ibm/aedtest/RCS/Makefile,v $ 
#
# Makefile for aedtest

PROG=	aedtest
MAN8=	aedtest.0
SRCS =  vlook.o  v2910.o v29116.o vbufn.o vm.o vikmem.o vtest.o vikio.o	\
	vload.o vspram.o vsram.o vtime.o vybus.o abuffer.o	\
	vlong.o vbuf.o vbootvt.o vttyio.o a2910.o a29116.o ablck.o	\
	abufn.o afastbuf.o along.o arzdz.o ascpad.o asram.o aybus.o	\
	aglasstty.o

# Flags description -- 
#	BUS -- indicates opening of /dev/bus per new kernel
#	BSD -- indicates running under 4.2BSD 
#		otherwise expects to run on a standalone floppy
#	INFINITE -- runs tests in an infinite loop unless stopped
#		by timeout, hardware error or intervention
#	NOTIMEOUT -- if enabled, ignores timeout problems and 
#		forces continuation
# following defines a single pass with timeouts enabled

CFLAGS+= -DBUS -DBSD -UINFINITE -UNOTIMEOUT
CFLAGS+= -I${.CURDIR}/. -I${.CURDIR}/../../sys

.include <bsd.prog.mk>
@


1.1
log
@Initial revision
@
text
@d6 1
a6 1
# $Header:Makefile 12.0$ 
d8 1
a8 1
# $Source: /ibm/acis/usr/src/ibm/aedtest/RCS/Makefile,v $ 
d11 5
a15 3
 
VOBJ =  vlook.o  v2910.o v29116.o vbufn.o vm.o vikmem.o vtest.o vikio.o	\
	dummy.o vload.o vspram.o vsram.o vtime.o vybus.o abuffer.o	\
a19 1
DESTDIR=
a28 1
CCFLAGS = -DBUS -DBSD -UINFINITE -UNOTIMEOUT
d30 2
a31 1
DONE = @@echo $@@ complete
d33 1
a33 32
all: aedtest

.c.o:
	$(CC) $(CCFLAGS) -c $<

vbootvt.o: term.h 

vttyio.o: term.h 

$(VOBJ): vikst.h
	$(CC) $(CCFLAGS) -c $*.c

libvtst.a: $(VOBJ)
	ar rv libvtst.a vtest.o
	ar rv libvtst.a $?
	ar dv libvtst.a vtest.o
	ranlib libvtst.a
	$(DONE)

aedtest: vtest.o libvtst.a
	$(CC) vtest.o libvtst.a -o aedtest
	$(DONE)

aedtesto: $(VOBJ)
	$(CC) $(VOBJ) -o aedtest
	$(DONE)

install:
	install -s -c aedtest ${DESTDIR}/usr/ibm/aedtest

clean:
	rm -f ${VOBJ} libvtst.a aedtest core a.out
@
