view Makefile @ 450:051226a06f70

Split th_vprintf_put_int() partially into th_vprintf_put_int_format(), to separate va_arg() value fetching from most of the formatting code.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 25 Oct 2017 22:13:09 +0300
parents 0a2f32b8a26e
children efd33accdc81
line wrap: on
line source

#
# Configuration settings for Linux and generic UNIX
# See other Makefile.* files for more options.
#

# Miscellaneous
BINTOOL_PREFIX =
PREFIX = /usr/local
BINPATH = ./
OBJPATH = obj/unix/
EXEEXT =

# Compiler flags and linker flags
CFLAGS += -DHAVE_CONFIG_H
LDFLAGS +=

CFLAGS += -DHAVE_STRING_H
CFLAGS += -DHAVE_STDINT_H
#CFLAGS += -DHAVE_SYS_TYPES_H
CFLAGS += -DHAVE_INTTYPES_H


###
### Unix targets
###
ENDIANCHK_BIN = $(BINPATH)endianchk$(EXEEXT)
NOINST_TARGETS += $(ENDIANCHK_BIN) config.h
THLIBS_DEP += config.h

include Makefile.gen