PACKAGES= \ neo \ eg-neo \ test BUILD_ROOT=@BUILD_ROOT@ all: (cd neo; $(MAKE) all; $(MAKE) install) (cd eg-neo; $(MAKE) all) (cd test; $(MAKE) all) install: (cd eg-neo; $(MAKE) install) (cd test; $(MAKE) install) clean check: @for i in $(PACKAGES) ; do \ (cd $$i; $(MAKE) $@) \ done GENFILES= config.status reconfigure Makefile distclean: clean (cd eg-neo; make distclean) (cd test; make distclean) (cd neo; make distclean) $(RM) -r bin lib include share $(GENFILES) .PHONY: install