updated top-level README and version_decl for V4.4.2 (#1795)
[WRF.git] / external / io_grib2 / bacio-1.3 / Makefile
blob8672e60e3a045762d915982409ca2aa41e5497e6
1 #------------------------------------------------------------------------------
2 # Makefile for producing libdbclient.so
4 # Copyright (C) 2001, WSI Corporation
5 #------------------------------------------------------------------------------
8 .SUFFIXES: .c .o
11 # Specity location for Makefiles that are included.
13 INCLUDEDIRS = -I.
14 BUILD_DIR = ../../io_grib_share/build
16 # Specify directory that output library is to be put in.
18 LIB_DEST = ..
20 # SPECIFY local include directories used during compilation of source code.
22 # CXX_INCLUDES is for C++ files
23 # C_INCLUDES is for C files
25 C_INCLUDES = -I.
26 CXX_INCLUDES = -I.
27 FORMAT = $(FREE)
30 # SPECIFY any subdirectories containing libraries that may be dynamically
31 # linked by this library.
33 SUB_DIRS =
36 # SPECIFY information for building a library:
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.
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.
50 LIB_NAME = io_grib2
51 SYS_DEFINES =
52 DEP_LIBS =
53 FORMAT = $(FIXED)
54 ARFLAGS = ruv
55 OBJS = \
56 bacio.v1.3.o \
57 baciof.o
60 # Include the boilerplate rules for building library modules.
62 include $(BUILD_DIR)/library_rules.mk
65 # Compile dependencies. These are appended to this file by make depend.
67 # DO NOT DELETE THIS LINE -- make depend depends on it.