@SET_MAKE@ CC = @CC@ CFLAGS = @CFLAGS@ AIXALLATOR_SUBDIR = @AIXALLATOR_SUBDIR@ HPALLATOR_SUBDIR = @HPALLATOR_SUBDIR@ ORCALLATOR_SUBDIR = @ORCALLATOR_SUBDIR@ ORCA_SERVICES_SUBDIR = @ORCA_SERVICES_SUBDIR@ PROCALLATOR_SUBDIR = @PROCALLATOR_SUBDIR@ WINALLATOR_SUBDIR = @WINALLATOR_SUBDIR@ SUBDIRS = $(AIXALLATOR_SUBDIR) \ $(HPALLATOR_SUBDIR) \ $(ORCALLATOR_SUBDIR) \ $(ORCA_SERVICES_SUBDIR) \ $(PROCALLATOR_SUBDIR) \ $(WINALLATOR_SUBDIR) ORCA_MAKE_DEFINES = CC='$(CC)' CFLAGS='$(CFLAGS)' all install: Makefile $(TARGETS) @for subdir in $(SUBDIRS); do \ echo making $@ in $$subdir; \ (cd $$subdir && $(MAKE) $(ORCA_MAKE_DEFINES) $@) || exit 1; \ done check: test: check orcallator_run_at_boot: cd orcallator && $(MAKE) orcallator_run_at_boot orca_services_run_at_boot_using_chkconfig: cd orca_services && $(MAKE) orca_services_run_at_boot_using_chkconfig procallator_run_at_boot_using_chkconfig: cd procallator && $(MAKE) procallator_run_at_boot_using_chkconfig clean: clean-recursive clean-local distclean: distclean-recursive distclean-local clean-local: distclean-local: clean-local $(RM) Makefile clean-recursive distclean-recursive: for subdir in $(SUBDIRS); do \ target=`echo $@ | sed 's/-recursive//'`; \ echo making $$target in $$subdir; \ (cd $$subdir && $(MAKE) $$target) || exit 1; \ done Makefile: Makefile.in cd .. && CONFIG_FILES=data_gatherers/Makefile ./config.status