mirror of
https://github.com/yquake2/pakextract.git
synced 2024-11-10 06:31:55 +00:00
Overhaul the Makefile:
- Switch DAIKATANA on - C11 instead of C89 - Clang is better than gcc ;)
This commit is contained in:
parent
d7fa8c2cc2
commit
bb50d7486e
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,10 +1,10 @@
|
|||
# The compiler
|
||||
CC := gcc
|
||||
CC := clang
|
||||
|
||||
# ----------
|
||||
|
||||
# Base CFLAGS
|
||||
CFLAGS := -O2 -Wall -ansi -pedantic
|
||||
CFLAGS := -O2 -Wall -std=c11 -pedantic -DDAIKATANA
|
||||
|
||||
# ----------
|
||||
|
||||
|
|
Loading…
Reference in a new issue