###############################################################################
# 			The Undelete System	(dquota)                      #
###############################################################################
INCL=		../include

CC=		gcc
CFLAGS=		-g -I $(INCL) -pipe

LDOPTIONS=	-L../shared -lshared

###############################################################################

FILES=	repdquota.o\
	getquota.o

###############################################################################
default: all
###############################################################################

ifeq (.depend,$(wildcard .depend))
include .depend
endif

all: .depend repdquota

repdquota: $(FILES) ../shared/libshared.a
	$(CC) $(FILES) $(LDOPTIONS) -o repdquota

###############################################################################

.depend:
	$(CC) -I $(INCL) -M *.c > .depend

clean:
	-rm -f *.o *~ repdquota .depend

###############################################################################
