Home
       gnu.mk - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       gnu.mk (306B)
       ---
            1 COMP = gcc
            2 OBJCOPY = objcopy
            3 OBJDUMP = objdump
            4 ASM = as
            5 LINKER = ld
            6 RANLIB = ranlib
            7 ARCHIVE = ar
            8 PRECOMP = cpp
            9 
           10 ARCHIVE_FLAGS = -U
           11 NOPIE_CFLAGS = -fno-pie
           12 TOOL_CFLAGS = -std=c99 $(PROFILE_CFLAGS)
           13 TOOL_LDFLAGS = -static
           14 TOOL_LDLIBS = $(PROFILE_LDLIBS)
           15 TOOL_LIBC_CFLAGS = -fno-stack-protector -ffreestanding