From e5362a794d813e0c4fb7a8a680a915eb57deaa7f Mon Sep 17 00:00:00 2001 From: xleroy Date: Sat, 20 Apr 2013 15:07:00 +0000 Subject: Split arch/int64.s into one file per function. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2206 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- runtime/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'runtime/Makefile') diff --git a/runtime/Makefile b/runtime/Makefile index 5ed24af..6f45850 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -2,7 +2,9 @@ include ../Makefile.config CFLAGS=-O1 -g -Wall INCLUDES= -OBJS=int64.o +OBJS=i64_dtos.o i64_dtou.o i64_sar.o i64_scmp.o i64_sdiv.o i64_shl.o \ + i64_shr.o i64_smod.o i64_stod.o i64_ucmp.o i64_udivmod.o i64_udiv.o \ + i64_umod.o i64_utod.o LIB=libcompcert.a all: $(LIB) $(INCLUDES) @@ -14,6 +16,9 @@ $(LIB): $(OBJS) %.o: $(ARCH)/%.s $(CASMRUNTIME) $^ +%.o: $(ARCH)/%.S + $(CASMRUNTIME) -DVARIANT_$(VARIANT) $^ + clean:: rm -f *.o $(LIB) -- cgit v1.2.3