mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
Allow CC to be defined other than gcc. If not defined, use gcc as default.
This commit is contained in:
parent
fcb6fa6d4b
commit
20967cfafe
|
@ -62,7 +62,9 @@ WARNINGS = -Wall -Wtype-limits -Wvla
|
|||
|
||||
INCLUDEDIRS = -I. -I./strategies -I./extras
|
||||
|
||||
CC = gcc
|
||||
ifndef CC
|
||||
CC = gcc
|
||||
endif
|
||||
CCFLAGS = $(DFLAGS) -std=gnu99 $(INCLUDEDIRS) $(WARNINGS)
|
||||
LDFLAGS += -lm -pthread
|
||||
LD = gcc
|
||||
|
|
Loading…
Reference in a new issue