# Makefile for Fred Fish' DBUG package.
# This file is not part of the original package.
# It is in the public domain

LIB	= dbug.o

all:	$(LIB) fact

fact:	$(LIB) fact.o
	cc -o fact -O fact.o $(LIB)

fact.o:	dbug.h

clean:
	rm -f fact.o nohup.out core

clobber: clean
	rm -f $(LIB) fact
