@SET_MAKE@ CC = @CC@ CFLAGS = @CFLAGS@ SUBDIRS = rotate_orca_graphs ORCA_MAKE_DEFINES = CC='$(CC)' CFLAGS='$(CFLAGS)' all check: Makefile @for subdir in $(SUBDIRS); do \ echo making $@ in $$subdir; \ (cd $$subdir && $(MAKE) $(ORCA_MAKE_DEFINES) $@) || exit 1; \ done test: check # Users will need to install the contributed programs by hand. install: @echo "Run make install_contrib to install contributed packages" install_contrib: @for subdir in $(SUBDIRS); do \ echo making install in $$subdir; \ (cd $$subdir && $(MAKE) $(ORCA_MAKE_DEFINES) install) || exit 1; \ done 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=contrib/Makefile ./config.status