#dis
#dis    Open Source License/Disclaimer, Forecast Systems Laboratory
#dis    NOAA/OAR/FSL, 325 Broadway Boulder, CO 80305
#dis
#dis    This software is distributed under the Open Source Definition,
#dis    which may be found at http://www.opensource.org/osd.html.
#dis
#dis    In particular, redistribution and use in source and binary forms,
#dis    with or without modification, are permitted provided that the
#dis    following conditions are met:
#dis
#dis    - Redistributions of source code must retain this notice, this
#dis    list of conditions and the following disclaimer.
#dis
#dis    - Redistributions in binary form must provide access to this
#dis    notice, this list of conditions and the following disclaimer, and
#dis    the underlying source code.
#dis
#dis    - All modifications to this software must be clearly documented,
#dis    and are solely the responsibility of the agent making the
#dis    modifications.
#dis
#dis    - If significant modifications or enhancements are made to this
#dis    software, the FSL Software Policy Manager
#dis    (softwaremgr@fsl.noaa.gov) should be notified.
#dis
#dis    THIS SOFTWARE AND ITS DOCUMENTATION ARE IN THE PUBLIC DOMAIN
#dis    AND ARE FURNISHED "AS IS."  THE AUTHORS, THE UNITED STATES
#dis    GOVERNMENT, ITS INSTRUMENTALITIES, OFFICERS, EMPLOYEES, AND
#dis    AGENTS MAKE NO WARRANTY, EXPRESS OR IMPLIED, AS TO THE USEFULNESS
#dis    OF THE SOFTWARE AND DOCUMENTATION FOR ANY PURPOSE.  THEY ASSUME
#dis    NO RESPONSIBILITY (1) FOR THE USE OF THE SOFTWARE AND
#dis    DOCUMENTATION; OR (2) TO PROVIDE TECHNICAL SUPPORT TO USERS.
#dis

RM = rm -f
SRCROOT=../../..
include $(SRCROOT)/src/include/makefile.inc 
include ../configure.rules

OBJS=   gridinfo.o new_storage.o filelist.o grib_prep.o output.o rrpr.o \
        rd_grib.o file_delete.o datint.o

EXE=	../grib_prep.exe

all:	$(EXE)

$(EXE):		$(OBJS) ../util/libpgu.a
	$(RM) $@
	$(FC) -o $@ $(LDFLAGS) $(OBJS) ../util/libpgu.a

# -------------------------------------------------------------------------
# common rules for all Makefiles - do not edit

clean:
	$(RM) $(EXE) *.o *.f *.i *.M *.mod

# -------------------------------------------------------------------------
# DO NOT DELETE THIS LINE -- make depend depends on it.

grib_prep.o:	gridinfo.o
output.o:	gridinfo.o
rd_grib.o:	gridinfo.o
rrpr.o:		gridinfo.o
storage.o:	gridinfo.o
