Highlight things
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
263B

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