12 lines
147 B
Makefile
12 lines
147 B
Makefile
|
ARCH := $(shell uname -m)
|
||
|
|
||
|
CFLAGS := -O3 -s
|
||
|
DEFINES := -DNDEBUG
|
||
|
BUILD := release
|
||
|
|
||
|
ifeq ($(ARCH),x86_64)
|
||
|
CFLAGS += -msse4.1
|
||
|
endif
|
||
|
|
||
|
include build.mk
|