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$
|
|
|
|
|
1995-09-07 05:31:26 -07:00
|
|
|
# Makefile for the str library
|
|
|
|
|
|
|
|
|
2007-11-06 07:16:56 -08:00
|
|
|
LIBNAME=str
|
|
|
|
COBJS=strstubs.$(O)
|
2009-07-16 07:18:41 -07:00
|
|
|
CLIBNAME=camlstr
|
2007-11-06 07:16:56 -08:00
|
|
|
CAMLOBJS=str.cmo
|
1995-09-07 05:31:26 -07:00
|
|
|
|
2007-11-06 07:16:56 -08:00
|
|
|
include ../Makefile
|
1995-10-23 09:57:13 -07:00
|
|
|
|
2007-11-06 07:16:56 -08:00
|
|
|
depend:
|
1995-09-07 05:31:26 -07:00
|
|
|
|
2010-01-22 04:48:24 -08:00
|
|
|
str.cmo: str.cmi
|
|
|
|
str.cmx: str.cmi
|
1995-10-23 09:57:13 -07:00
|
|
|
|
1995-09-07 05:31:26 -07:00
|
|
|
depend:
|
|
|
|
gcc -MM $(CFLAGS) *.c > .depend
|
1999-02-13 15:09:35 -08:00
|
|
|
../../boot/ocamlrun ../../tools/ocamldep *.mli *.ml >> .depend
|
1995-09-07 05:31:26 -07:00
|
|
|
|
|
|
|
include .depend
|