# Must include configure.hycom here or CPPFLAGS and CPP are overrided # as "" on AIX. include ../configure.hycom SHELL=/bin/sh #HYCOM init makefile SUBDIRS = \ hmon_get_rtofs \ hmon_archv2restart \ hmon_gfs2ofs2 \ hmon_correct_wind \ hmon_restart2restart \ hmon_subregion \ hmon_timeinterp_forcing \ hmon_getdata_river \ hmon_getkpds \ hmon_qc_river \ hmon_rivers all: $(SUBDIRS) for dir in $(SUBDIRS); do \ ( cd $$dir; echo "Making $@ in `pwd`" ; make ); \ done clean: $(SUBDIRS) for dir in $(SUBDIRS); do \ ( cd $$dir; echo "Making $@ in `pwd`" ; \ make $@) ; \ done