From 94aea0609bb54f0fde29a558366b646b3b8d21a2 Mon Sep 17 00:00:00 2001 From: xleroy Date: Mon, 6 Aug 2007 08:45:25 +0000 Subject: Ajout et utilisation de caml/Driver.ml. Ajout ./configure. Revu Makefiles git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@387 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- runtime/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'runtime') diff --git a/runtime/Makefile b/runtime/Makefile index c45c9fb..9a3f621 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -1,7 +1,10 @@ +include ../Makefile.config + CFLAGS=-arch ppc -O1 -g -Wall #CFLAGS=-O1 -g -Wall OBJS=stdio.o calloc.o LIB=libcompcert.a +INCLUDES=stdio.h $(LIB): $(OBJS) rm -f $(LIB) @@ -11,3 +14,7 @@ stdio.o: stdio.h clean: rm -f *.o $(LIB) + +install: + install -d $(LIBDIR) + install -c $(LIB) $(INCLUDES) $(LIBDIR) -- cgit v1.2.3