libhl/config.mk
2023-08-27 01:31:36 -06:00

19 lines
263 B
Makefile

# - TARGET : output program name
TARGET:=hl
CFLAGS:=-std=c99
CPPFLAGS:=-Isyntax/ -D_GNU_SOURCE -D_FORTIFY_SOURCE=2
DEBUG=1
ifeq (${DEBUG},1)
CFLAGS += -Og -ggdb -pg -fno-inline
else
CFLAGS += -O2 -flto=auto
endif
PREFIX:=/usr/bin
USER=$(shell whoami)