Makefile.global.in

Mon, 25 Mar 2024 17:14:56 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 25 Mar 2024 17:14:56 +0100
changeset 650
0b215e4b814e
parent 409
cdf68044adaf
child 675
825210ba2707
permissions
-rw-r--r--

Brought the retry attempts to read the DHT11 sensors to the main devices loop. The actual read function is now very simple. Called every 30 seconds when all is well, or 2 seconds if something is wrong.

# Compile-time configuration for mbsePi-apps.

VERSION		= @VERSION@
PACKAGE		= @PACKAGE@

# for make install, where to put binaries and what owner to set
SUBDIRS		= @SUBDIRS@
PREFIX		= @prefix@
BINDIR		= @prefix@/bin
ETCDIR		= @prefix@/etc
DOCDIR		= @prefix@/doc
VARDIR		= @prefix@/var
DATADIR		= @prefix@/share/@PACKAGE@/

INSTALL		= @INSTALL@
SHELL		= /bin/sh
ECHO		= echo -e
CC		= @CC@
TAR		= @TAR@
RANLIB		= @RANLIB@

CFLAGS		= @CFLAGS@
CXXFLAGS	= @CXXFLAGS@
LIBS		= @LIBS@

SDL_CFLAGS	= @SDL_CFLAGS@
SDL_LIBS	= @SDL_LIBS@

mercurial