aboutsummaryrefslogtreecommitdiff
path: root/sw/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sw/Makefile')
-rwxr-xr-xsw/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/Makefile b/sw/Makefile
index 2aa4927..fc5faa6 100755
--- a/sw/Makefile
+++ b/sw/Makefile
@@ -1,4 +1,5 @@
CC = gcc
+AR = ar
CFLAGS = -Wall -fPIC
LIB = libcryptech.a
@@ -16,7 +17,7 @@ all: $(LIB) $(BIN)
$(CC) $(CFLAGS) -c -o $@ $<
libcryptech.a: tc_eim.o novena-eim.o
- ar rcs $@ $^
+ $(AR) rcs $@ $^
hash_tester: hash_tester.o $(LIB)
$(CC) -o $@ $^