summaryrefslogtreecommitdiff
path: root/config.mk
blob: 20503807429f5925f4df3975d758a7ad73cf092d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# See COPYING file for copyright and license details.
VERSION = 0.3

# paths
PREFIX = /usr/local

CFLAGS = -ansi -pedantic -Wall -Wextra -Werror -g -D_POSIX_C_SOURCE=200112L \
         -DVERSION=\"$(VERSION)\"

# musl static
#CC = musl-gcc
#LDFLAGS = -static #-s

# glibc dynamic
CC = cc
LDFLAGS = 

LD = $(CC)