libhl/config.mk

19 lines
263 B
Makefile
Raw Normal View History

2023-08-21 09:05:27 -04:00
# - TARGET : output program name
2023-08-27 03:31:36 -04:00
TARGET:=hl
2023-08-21 09:05:27 -04:00
CFLAGS:=-std=c99
2023-08-23 22:45:07 -04:00
CPPFLAGS:=-Isyntax/ -D_GNU_SOURCE -D_FORTIFY_SOURCE=2
2023-08-21 09:05:27 -04:00
DEBUG=1
ifeq (${DEBUG},1)
CFLAGS += -Og -ggdb -pg -fno-inline
else
CFLAGS += -O2 -flto=auto
endif
2023-08-21 10:18:26 -04:00
2023-08-27 03:31:36 -04:00
PREFIX:=/usr/bin
USER=$(shell whoami)