tools/Makefile

Sat, 25 Apr 2020 20:31:31 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 25 Apr 2020 20:31:31 +0200
changeset 605
e00f8ff4de9a
parent 559
2bcccc6976f9
child 612
452f79a5ad71
permissions
-rw-r--r--

Version 0.9.8. Added extra path to the fonts for Debian buster. Changed the PID to work on Proportional on Measurement. Added loops so that it looks like the PID is running at 100 mSec intervals.

# Makefile for the mbsePi-apps/thermferm.

include ../Makefile.global

#SRCS		= $(wildcard *.c)
#HDRS		= $(wildcard *.h)
#OBJS		= $(SRCS:.c=.o)
#SLIBS		= -lpthread
#TARGET		= thermferm
OTHER		= Makefile thermferm.init

#############################################################################

.c.o:
		${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $<

all:


clean:
		rm -f ${TARGET} *.o *.h~ *.c~ core filelist Makefile.bak

install:
		${INSTALL} -c -g root -o root -m 0755 thermferm.init /etc/init.d/thermferm
		[ -x /bin/systemctl ] && /bin/systemctl daemon-reload

filelist:	Makefile
		BASE=`pwd`; \
		BASE=`basename $${BASE}`; \
		(for f in ${SRCS} ${HDRS} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist

depend:

mercurial