#Control Makefile for WAM-GPU
# this makefile execute 3 makefile individually, including preprocessing
# grid and tables, main program for WAM, and wave output in NETCDF.
# You can also execute each makefile separately by make -f Makefile_***
# written by Ye Yuan, NMEFC for WAM-GPU
# #####################################################################
all:
	make -f Makefile_preproc
	make -f Makefile_wam
	make -f Makefile_pnetcdf
	make -f Makefile_ptime
	mv preproc wam pnetcdf ptime ../exe
clean:
	rm -f *.mod *.o
