2000-03-16 05:35:20 -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. #
|
2000-03-16 05:35:20 -08:00
|
|
|
# #
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
2007-11-06 07:16:56 -08:00
|
|
|
LIBNAME=bigarray
|
2008-01-04 07:01:48 -08:00
|
|
|
EXTRACFLAGS=-I../win32unix -DIN_OCAML_BIGARRAY -DCAML_NAME_SPACE
|
2007-11-06 07:16:56 -08:00
|
|
|
EXTRACAMLFLAGS=-I ../win32unix
|
|
|
|
COBJS=bigarray_stubs.$(O) mmap_win32.$(O)
|
|
|
|
CAMLOBJS=bigarray.cmo
|
|
|
|
HEADERS=bigarray.h
|
|
|
|
|
|
|
|
include ../Makefile.nt
|
2001-08-28 07:47:48 -07:00
|
|
|
|
2000-03-16 05:35:20 -08:00
|
|
|
depend:
|
|
|
|
gcc -MM $(CFLAGS) *.c > .depend
|
2002-06-07 02:49:45 -07:00
|
|
|
../../boot/ocamlrun ../../tools/ocamldep *.mli *.ml >> .depend
|
2000-03-16 05:35:20 -08:00
|
|
|
|
|
|
|
include .depend
|