1998-05-18 16:54:02 +02:00
|
|
|
include GNUmakevars
|
|
|
|
|
1998-09-17 09:30:12 +02:00
|
|
|
all: quotacheck quotastat quotasanitycheck
|
1998-05-18 16:54:02 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f quotacheck *.bak
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
rm -f customize
|
|
|
|
|
1998-09-17 10:15:45 +02:00
|
|
|
install: $(SBINDIR) $(SBINDIR)/quotacheck $(SBINDIR)/quotastat \
|
|
|
|
$(SBINDIR)/quotasanitycheck $(MAN8DIR)/quotasanitycheck.8
|
1998-05-18 16:54:02 +02:00
|
|
|
|
|
|
|
%: %.pl customize
|
|
|
|
sh ./customize < $< > $@
|
|
|
|
chmod +x $@
|
|
|
|
|
|
|
|
%: %.sh customize
|
|
|
|
sh ./customize < $< > $@
|
|
|
|
chmod +x $@
|
|
|
|
|
|
|
|
customize: configure
|
|
|
|
sh ./configure
|
|
|
|
|
1998-09-17 10:15:45 +02:00
|
|
|
$(SBINDIR):
|
1998-05-18 16:54:02 +02:00
|
|
|
mkdir -p $@
|
|
|
|
|
|
|
|
include GNUmakerules
|