#******************************************************************************
#FILE:				makefile
#LANGUAGE:			make
#SYSTEM:				UNIX 
#USER-INTERFACE:		UNIX
#DESCRIPTION
#	This makefile builds the progress tool.
#AUTHORS
#	<PJB> Pascal J. Bourguignon
#MODIFICATIONS
#	1998/08/12 <PJB> Creation.
#BUGS
#LEGAL
#	Copyright Pascal J. Bourguignon 1998 - 1998
#	The GNU GENERAL PUBLIC LICENSE applies to this software.
#	See the file named "COPYING".
#******************************************************************************

all:progress

CFLAGS=-g -Wall

OBJECTS=ProgressMain.o Progress.o DragBackgroundView.o\
	Gauge.o BarGauge.o

progress:$(OBJECTS)
	cc -o progress $(OBJECTS) -lNeXT_s

Progress.o:Progress.h Progress.m DragBackgroundView.h
DragBackgroundView.o:DragBackgroundView.h DragBackgroundView.m
ProgressMain.o:ProgressMain.m Progress.h
Gauge.o:Gauge.h Gauge.m
BarGauge.o:BarGauge.h BarGauge.m Gauge.h 

clean:
	-rm testfile *.o *~
	
test:progress
	-rm testfile
	touch testfile
	progress testfile 100 &
	sleep 6
	echo '012345678901234567789' >> testfile
	sleep 2
	echo '012345678901234567789' >> testfile
	sleep 2
	echo '012345678901234567789' >> testfile
	sleep 2
	echo '012345678901234567789' >> testfile
	sleep 2
	echo '012345678901234567789' >> testfile
	ps ax | grep -v grep | grep progress



#### makefile / Wed Aug 12 04:01:03 MET 1998 / PJB ####
	