#define this to the directory, where the sources for the
#GNU fileutils Version 3.12 are
FUSRC=s:/fileutils-3.12

ALL=all

$(ALL):
	$(MAKE) -C lib FUSRC=$(FUSRC) $@
	$(MAKE) -C src FUSRC=$(FUSRC) $@

ifneq ($(ALL),clean)
clean:
	$(MAKE) ALL=clean
endif

ifneq ($(ALL),distclean)
distclean: clean
	$(MAKE) ALL=distclean
endif

