113 lines
3.9 KiB
Makefile
113 lines
3.9 KiB
Makefile
#########################################################################
|
|
# #
|
|
# OCaml #
|
|
# #
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
# #
|
|
# Copyright 1999 Institut National de Recherche en Informatique et #
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
# under the terms of the GNU Library General Public License, with #
|
|
# the special exception on linking described in file ../../LICENSE. #
|
|
# #
|
|
#########################################################################
|
|
|
|
include ../../config/Makefile
|
|
|
|
ROOTDIR=../..
|
|
CAMLC=$(ROOTDIR)/boot/ocamlrun $(ROOTDIR)/ocamlc -nostdlib \
|
|
-I $(ROOTDIR)/stdlib -I $(ROOTDIR)/otherlibs/unix
|
|
CAMLOPT=$(ROOTDIR)/boot/ocamlrun $(ROOTDIR)/ocamlopt -nostdlib \
|
|
-I $(ROOTDIR)/stdlib -I $(ROOTDIR)/otherlibs/unix
|
|
MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib
|
|
COMPFLAGS=-w +33..39 -warn-error A -g -bin-annot -safe-string
|
|
|
|
BYTECODE_C_OBJS=st_stubs_b.o
|
|
NATIVECODE_C_OBJS=st_stubs_n.o
|
|
|
|
THREAD_OBJS= thread.cmo mutex.cmo condition.cmo event.cmo threadUnix.cmo
|
|
|
|
all: libthreads.a threads.cma
|
|
|
|
allopt: libthreadsnat.a threads.cmxa
|
|
|
|
libthreads.a: $(BYTECODE_C_OBJS)
|
|
$(MKLIB) -o threads $(BYTECODE_C_OBJS) -lpthread
|
|
|
|
st_stubs_b.o: st_stubs.c st_posix.h
|
|
$(BYTECC) -O -I../../byterun $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) \
|
|
-c st_stubs.c
|
|
mv st_stubs.o st_stubs_b.o
|
|
|
|
# Dynamic linking with -lpthread is risky on many platforms, so
|
|
# do not create a shared object for libthreadsnat.
|
|
libthreadsnat.a: $(NATIVECODE_C_OBJS)
|
|
$(AR) rc libthreadsnat.a $(NATIVECODE_C_OBJS)
|
|
|
|
st_stubs_n.o: st_stubs.c st_posix.h
|
|
$(NATIVECC) -O -I../../asmrun -I../../byterun $(NATIVECCCOMPOPTS) \
|
|
$(SHAREDCCCOMPOPTS) -DNATIVE_CODE -DTARGET_$(ARCH) \
|
|
-DSYS_$(SYSTEM) -c st_stubs.c
|
|
mv st_stubs.o st_stubs_n.o
|
|
|
|
threads.cma: $(THREAD_OBJS)
|
|
$(MKLIB) -ocamlc '$(CAMLC)' -o threads $(THREAD_OBJS) \
|
|
-cclib -lunix $(PTHREAD_LINK)
|
|
|
|
# See remark above: force static linking of libthreadsnat.a
|
|
threads.cmxa: $(THREAD_OBJS:.cmo=.cmx)
|
|
$(CAMLOPT) -a -o threads.cmxa $(THREAD_OBJS:.cmo=.cmx) \
|
|
-cclib -lthreadsnat $(PTHREAD_LINK)
|
|
|
|
# Note: I removed "-cclib -lunix" from the line above.
|
|
# Indeed, if we link threads.cmxa, then we must also link unix.cmxa,
|
|
# which itself will pass -lunix to the C linker. It seems more
|
|
# modular to me this way. -- Alain
|
|
|
|
|
|
$(THREAD_OBJS:.cmo=.cmx): ../../ocamlopt
|
|
|
|
partialclean:
|
|
rm -f *.cm*
|
|
|
|
clean: partialclean
|
|
rm -f *.o *.a *.so
|
|
|
|
INSTALL_LIBDIR=$(DESTDIR)$(LIBDIR)
|
|
INSTALL_STUBLIBDIR=$(DESTDIR)$(STUBLIBDIR)
|
|
|
|
install:
|
|
if test -f dllthreads.so; then \
|
|
cp dllthreads.so $(INSTALL_STUBLIBDIR)/dllthreads.so; fi
|
|
cp libthreads.a $(INSTALL_LIBDIR)/libthreads.a
|
|
cd $(INSTALL_LIBDIR); $(RANLIB) libthreads.a
|
|
if test -d $(INSTALL_LIBDIR)/threads; then :; \
|
|
else mkdir $(INSTALL_LIBDIR)/threads; fi
|
|
cp $(THREAD_OBJS:.cmo=.cmi) threads.cma $(INSTALL_LIBDIR)/threads
|
|
rm -f $(INSTALL_LIBDIR)/threads/stdlib.cma
|
|
cp thread.mli mutex.mli condition.mli event.mli threadUnix.mli \
|
|
$(INSTALL_LIBDIR)
|
|
cp threads.h $(INSTALL_LIBDIR)/caml/threads.h
|
|
|
|
installopt:
|
|
cp libthreadsnat.a $(INSTALL_LIBDIR)/libthreadsnat.a
|
|
cd $(INSTALL_LIBDIR); $(RANLIB) libthreadsnat.a
|
|
cp $(THREAD_OBJS:.cmo=.cmx) threads.cmxa threads.a $(INSTALL_LIBDIR)/threads
|
|
cd $(INSTALL_LIBDIR)/threads; $(RANLIB) threads.a
|
|
|
|
.SUFFIXES: .ml .mli .cmo .cmi .cmx
|
|
|
|
.mli.cmi:
|
|
$(CAMLC) -c $(COMPFLAGS) $<
|
|
|
|
.ml.cmo:
|
|
$(CAMLC) -c $(COMPFLAGS) $<
|
|
|
|
.ml.cmx:
|
|
$(CAMLOPT) -c $(COMPFLAGS) $<
|
|
|
|
depend: $(GENFILES)
|
|
-gcc -MM -I../../byterun *.c > .depend
|
|
../../boot/ocamlrun ../../tools/ocamldep *.mli *.ml >> .depend
|
|
|
|
include .depend
|