diff --git a/Makefile b/Makefile index f1589a6..989d062 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ TARGET := vecx CLEANFILES := $(TARGET) $(OBJECTS) $(TARGET): $(OBJECTS) - gcc $(CFLAGS) -o $@ $^ $(LIBS) + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) clean: $(RM) $(CLEANFILES)