blob: 5be831918b41164a0192931b2c8720141a923b05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# See COPYING file for copyright, license and warranty details.
VERSION = prealpha
# paths
PREFIX = /usr/local
# flags
CFLAGS = -ansi -pedantic -Wall -Wextra -Werror -g -D_POSIX_C_SOURCE=200112L -DVERSION=\"$(VERSION)\"
LDFLAGS = -static #-s
# compiler and linker
CC = musl-gcc
LD = ld
|