1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

windows: avoid "missing cc command" message on each make invocation

This commit is contained in:
Philippe Renon 2016-01-23 01:23:29 +01:00
parent e3926b9c08
commit 6e0afc771e

View File

@ -22,6 +22,7 @@ UNAME := $(shell uname)
# Here and everywhere if not Linux or Mac then assume Windows
ifeq ($(filter Linux Darwin, $(UNAME)), )
UNAME := Windows
CC := gcc# because cc doesn't exist
endif
ifeq ($(UNAME),Windows)