1999-11-17 10:59:06 -08:00
|
|
|
#########################################################################
|
|
|
|
# #
|
|
|
|
# Objective Caml #
|
|
|
|
# #
|
|
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
|
|
# #
|
|
|
|
# Copyright 1999 Institut National de Recherche en Informatique et #
|
|
|
|
# en Automatique. All rights reserved. This file is distributed #
|
2001-12-07 05:41:02 -08:00
|
|
|
# under the terms of the GNU Library General Public License, with #
|
|
|
|
# the special exception on linking described in file ../../LICENSE. #
|
1999-11-17 10:59:06 -08:00
|
|
|
# #
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
1996-05-15 07:18:46 -07:00
|
|
|
# Makefile for the ndbm library
|
|
|
|
|
2007-11-06 07:16:56 -08:00
|
|
|
LIBNAME=dbm
|
|
|
|
CLIBNAME=mldbm
|
|
|
|
CAMLOBJS=dbm.cmo
|
1997-07-15 07:31:29 -07:00
|
|
|
COBJS=cldbm.o
|
2007-11-06 07:16:56 -08:00
|
|
|
EXTRACFLAGS=$(DBM_INCLUDES)
|
|
|
|
LINKOPTS=$(DBM_LINK)
|
1996-06-12 07:28:23 -07:00
|
|
|
|
2007-11-06 07:16:56 -08:00
|
|
|
include ../Makefile
|
1996-05-15 07:18:46 -07:00
|
|
|
|
1996-06-12 07:28:23 -07:00
|
|
|
|
1996-05-15 07:18:46 -07:00
|
|
|
depend:
|
1998-04-21 09:09:03 -07:00
|
|
|
../../boot/ocamlrun ../../tools/ocamldep *.mli *.ml > .depend
|
1996-05-15 07:18:46 -07:00
|
|
|
|
|
|
|
include .depend
|