head	1.2;
access;
symbols
	with-solaris-support:1.2
	before-solaris-version:1.1
	plt-021:1.1;
locks; strict;
comment	@# @;


1.2
date	99.04.01.16.06.07;	author schaefer;	state Exp;
branches;
next	1.1;

1.1
date	98.12.10.17.19.55;	author schaefer;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Small fix
@
text
@# Makefile -- Makefile for the Parallel Libra Tester
# Marc SCHAEFER <schaefer@@dilog.ch>
# Creation: 01/08/96
# Update:   14/01/97
# V1.0 PV007
# NOTES
#    -DOLD_KERNEL              Linux < 1.3
#    -DWAIT_LONGER=secs        enable longer timeout (secs seconds)
#    -DENABLE_INTERACTIVE_MODE Allows -i
#    -DENABLE_INITIALIZE       Does initialize_elt_status in plt_initialize().
# BUGS
#    - Missing dependencies
# TODO
# MODIFICATION-HISTORY
#    10/12/98  schaefer Applying new RCS scheme.
# $Id: Makefile,v 1.1 1998/12/10 17:19:55 schaefer Exp schaefer $

CFLAGS=-Wall -g -DENABLE_INTERACTIVE_MODE -DENABLE_INITIALIZE -DWAIT_LONGER=180 -DSHOW_SOFT_ERRORS # -O0
# -DOLD_KERNEL
# -DWAIT_LONGER=180
CC=gcc

TARGET=plt
OBJECTS=main.o plt.o process.o debug.o tape.o mc.o scsi.o time.o mt_operations.o tests.o

all: $(TARGET)

clean:
	rm -f $(TARGET) $(OBJECTS)

$(TARGET): $(OBJECTS)
	$(CC) $(CFLAGS) $(OBJECTS) -o $(TARGET)
@


1.1
log
@Initial revision
@
text
@d16 1
a16 1
# $Id$
d18 1
a18 1
CFLAGS=-Wall -g -DENABLE_INTERACTIVE_MODE -DENABLE_INITIALIZE -DWAIT_LONGER=180 # -O0
@
