blob: 81df4ea7577072b4bee9fdea25e3bbfba8d43623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
include ../Makefile.config
CFLAGS=-O1 -g -Wall
INCLUDES=
OBJS=i64_dtos.o i64_dtou.o i64_sar.o i64_sdiv.o i64_shl.o \
i64_shr.o i64_smod.o i64_stod.o i64_stof.o \
i64_udivmod.o i64_udiv.o i64_umod.o i64_utod.o i64_utof.o
LIB=libcompcert.a
all: $(LIB) $(INCLUDES)
$(LIB): $(OBJS)
rm -f $(LIB)
ar rcs $(LIB) $(OBJS)
%.o: $(ARCH)/%.s
$(CASMRUNTIME) -o $@ $^
%.o: $(ARCH)/%.S
$(CASMRUNTIME) -DVARIANT_$(VARIANT) -DSYS_$(SYSTEM) -o $@ $^
clean::
rm -f *.o $(LIB)
install:
install -d $(LIBDIR)
install -c $(LIB) $(INCLUDES) $(LIBDIR)
test/test_int64: test/test_int64.c $(LIB)
$(CC) -o $@ test/test_int64.c $(LIB)
clean::
rm -f test/test_int64
.PHONY: test
test: FORCE test/test_int64
test/test_int64
FORCE:
|