source: lmdz_wrf/WRFV3/external/io_grib2/bacio-1.3/Makefile @ 1

Last change on this file since 1 was 1, checked in by lfita, 10 years ago
  • -- --- Opening of the WRF+LMDZ coupling repository --- -- -

WRF: version v3.3
LMDZ: version v1818

More details in:

File size: 1.8 KB
Line 
1#------------------------------------------------------------------------------
2#  Makefile for producing libdbclient.so
3#
4#  Copyright (C) 2001, WSI Corporation
5#------------------------------------------------------------------------------
6#
7
8.SUFFIXES:      .c .o
9
10#
11# Specity location for Makefiles that are included.
12#
13INCLUDEDIRS = -I.
14BUILD_DIR = ../../io_grib_share/build
15#
16# Specify directory that output library is to be put in.
17#
18LIB_DEST = ..
19#
20#  SPECIFY local include directories used during compilation of source code.
21#
22#    CXX_INCLUDES is for C++ files
23#    C_INCLUDES is for C files
24#
25C_INCLUDES   = -I.
26CXX_INCLUDES = -I.
27FORMAT       = $(FREE)
28
29#
30#  SPECIFY any subdirectories containing libraries that may be dynamically
31#          linked by this library.
32#
33SUB_DIRS =
34
35#
36#  SPECIFY information for building a library:
37#
38#    LIB_NAME - Fragment of name of the library to build
39#               e.g. if library file name is libfoo.so, set LIB_NAME = foo
40#    DEP_LIBS - The tokens required to link a shared library against other
41#               shared libraries upon which it depends.  DEP_LIBS should
42#               contain -L<dir> tokens to specify where the dependent
43#               libraries are, and -l<lib> tokens to specify libraries to link.
44#    OBJS     - List of object files that go into the library.
45#
46#  NOTES:
47#  1. Be careful about whitespace after the last character in the LIB_NAME.
48#     These spaces will generate an error when the library is made.
49#
50LIB_NAME = io_grib2
51SYS_DEFINES = 
52DEP_LIBS = 
53FORMAT       = $(FIXED)
54ARFLAGS      = ruv
55OBJS =  \
56        bacio.v1.3.o \
57        baciof.o
58
59#
60#  Include the boilerplate rules for building library modules.
61#
62include $(BUILD_DIR)/library_rules.mk
63
64#
65#  Compile dependencies.  These are appended to this file by make depend.
66#
67# DO NOT DELETE THIS LINE -- make depend depends on it.
Note: See TracBrowser for help on using the repository browser.