78 lines
2.5 KiB
Makefile
78 lines
2.5 KiB
Makefile
#########################################################################
|
|
# #
|
|
# 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 #
|
|
# under the terms of the GNU Library General Public License, with #
|
|
# the special exception on linking described in file ../LICENSE. #
|
|
# #
|
|
#########################################################################
|
|
|
|
# $Id$
|
|
|
|
include Makefile.common
|
|
|
|
CFLAGS=-DCAML_NAME_SPACE -O $(BYTECCCOMPOPTS) $(IFLEXDIR)
|
|
DFLAGS=-DCAML_NAME_SPACE -g -DDEBUG $(BYTECCCOMPOPTS)
|
|
|
|
OBJS=$(COMMONOBJS) unix.o main.o
|
|
DOBJS=$(OBJS:.o=.d.o) instrtrace.d.o
|
|
PICOBJS=$(OBJS:.o=.pic.o)
|
|
|
|
SHARED_LIBS_TMP=$(SUPPORTS_SHARED_LIBRARIES:%false=)
|
|
SHARED_LIBS_DEPS=$(SHARED_LIBS_TMP:%true=libcamlrun_shared.so)
|
|
|
|
all:: $(SHARED_LIBS_DEPS)
|
|
|
|
ocamlrun$(EXE): libcamlrun.a prims.o
|
|
$(MKEXE) $(BYTECCLINKOPTS) -o ocamlrun$(EXE) \
|
|
prims.o libcamlrun.a $(BYTECCLIBS)
|
|
|
|
ocamlrund$(EXE): libcamlrund.a prims.o
|
|
$(MKEXE) -g $(BYTECCLINKOPTS) -o ocamlrund$(EXE) \
|
|
prims.o libcamlrund.a $(BYTECCLIBS)
|
|
|
|
libcamlrun.a: $(OBJS)
|
|
ar rc libcamlrun.a $(OBJS)
|
|
$(RANLIB) libcamlrun.a
|
|
|
|
libcamlrund.a: $(DOBJS)
|
|
ar rc libcamlrund.a $(DOBJS)
|
|
$(RANLIB) libcamlrund.a
|
|
|
|
libcamlrun_shared.so: $(PICOBJS)
|
|
$(MKDLL) -o libcamlrun_shared.so $(PICOBJS) $(BYTECCLIBS)
|
|
|
|
install::
|
|
if test -f libcamlrun_shared.so; then \
|
|
cp libcamlrun_shared.so $(LIBDIR)/libcamlrun_shared.so; fi
|
|
|
|
clean::
|
|
rm -f libcamlrun_shared.so
|
|
|
|
|
|
.SUFFIXES: .d.o .pic.o
|
|
|
|
.c.d.o:
|
|
@ if test -f $*.o; then mv $*.o $*.f.o; else :; fi
|
|
$(CC) -c $(DFLAGS) $<
|
|
mv $*.o $*.d.o
|
|
@ if test -f $*.f.o; then mv $*.f.o $*.o; else :; fi
|
|
|
|
.c.pic.o:
|
|
@ if test -f $*.o; then mv $*.o $*.f.o; else :; fi
|
|
$(CC) -c $(CFLAGS) $(SHAREDCCCOMPOPTS) $<
|
|
mv $*.o $*.pic.o
|
|
@ if test -f $*.f.o; then mv $*.f.o $*.o; else :; fi
|
|
|
|
depend : prims.c opnames.h jumptbl.h version.h
|
|
-gcc -MM $(BYTECCCOMPOPTS) *.c > .depend
|
|
-gcc -MM $(BYTECCCOMPOPTS) -DDEBUG *.c | sed -e 's/\.o/.d.o/' >> .depend
|
|
-gcc -MM $(BYTECCCOMPOPTS) *.c | sed -e 's/\.o/.pic.o/' >> .depend
|
|
.PHONY: depend
|
|
|
|
include .depend
|