view Makefile @ 562:5d2c1bfc04aa

Rename EXEEXT to BINEXT in the build system.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 06 Jan 2020 12:39:44 +0200
parents 85fa3d333556
children e4ae9ef86332
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/
BINEXT =

# 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$(BINEXT)
NOINST_TARGETS += $(ENDIANCHK_BIN) config.h
THLIBS_DEP += config.h

include Makefile.gen