19 lines
263 B
Makefile
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)
|