view Makefile @ 472:8d31605c2f0f

Add some depencies.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 04 Jun 2018 03:14:14 +0300
parents 85fa3d333556
children 5d2c1bfc04aa
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