blob: 42c5654d6286d0e3e48d383abdc043448936cc6d (
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 =
# compiler and linker
CC = cc
LD = ld
|