This repository has been archived on 2021-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
baseven/config.mk

21 lines
235 B
Makefile
Raw Permalink Normal View History

SRC = src/baseven.c
2021-11-06 19:45:54 +00:00
BIN =
2021-10-31 16:42:31 +00:00
CC = clang
DEBUG = 1
2021-11-06 19:45:54 +00:00
LDFLAGS =\
-static
CFLAGS =\
-std=c99\
-Weverything\
-Wno-padded\
-Wno-disabled-macro-expansion\
-pedantic
ifeq (${DEBUG},1)
CFLAGS += -g
else
CFLAGS += -O2 -Werror
endif