summaryrefslogtreecommitdiff
path: root/util/archive/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/archive/Makefile')
-rw-r--r--util/archive/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/archive/Makefile b/util/archive/Makefile
index a592a627fa..7008cc2020 100644
--- a/util/archive/Makefile
+++ b/util/archive/Makefile
@@ -1,12 +1,12 @@
PROGRAM = archive
-CC ?= gcc
+HOSTCC ?= gcc
SRCS = $(PROGRAM).c
all: $(PROGRAM)
$(PROGRAM): $(SRCS)
- $(CC) -o $@ $^
+ $(HOSTCC) -o $@ $^
clean:
rm -f $(PROGRAM) *.o