mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 03:50:36 +00:00
Allow uname override
This commit is contained in:
parent
8fda2233cb
commit
199540e6ca
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -4,9 +4,9 @@ BINDIR := $(PREFIX)/bin
|
|||
DATADIR := $(PREFIX)/share
|
||||
MANDIR := $(DATADIR)/man
|
||||
|
||||
UNAME = $(shell uname)
|
||||
CYGWIN = $(findstring CYGWIN, $(UNAME))
|
||||
MINGW = $(findstring MINGW32, $(UNAME))
|
||||
UNAME ?= $(shell uname)
|
||||
CYGWIN = $(findstring CYGWIN, $(UNAME))
|
||||
MINGW = $(findstring MINGW32, $(UNAME))
|
||||
|
||||
CC ?= clang
|
||||
CFLAGS += -Wall -Wextra -I. -pedantic-errors -std=gnu99
|
||||
|
|
Loading…
Reference in a new issue