blob: 5e496b3a100b0d60ad0fcc82aaaf87284f86342a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
ifneq ($(findstring i686,$(TARGET)),)
CFLAGS += -m32
else
CFLAGS += -m64
endif
default:
$(CC) $(CFLAGS) -c native/bn_is_zero.c -o $(OUT_DIR)/bn_is_zero.o
$(AR) crus $(OUT_DIR)/libwrapped.a $(OUT_DIR)/bn_is_zero.o
|