windows make fix?

This commit is contained in:
Alex Garcia 2024-05-23 11:21:38 -07:00
parent 0af4e1eaed
commit 79f4e15a63

View file

@ -3,8 +3,12 @@ COMMIT=$(shell git rev-parse HEAD)
VERSION=$(shell cat VERSION) VERSION=$(shell cat VERSION)
DATE=$(shell date +'%FT%TZ%z') DATE=$(shell date +'%FT%TZ%z')
CC ?= gcc ifndef CC
AR ?= ar CC=gcc
endif
ifndef AR
AR=ar
endif
ifeq ($(shell uname -s),Darwin) ifeq ($(shell uname -s),Darwin)
CONFIG_DARWIN=y CONFIG_DARWIN=y