tools/Makefile

Sat, 23 Mar 2024 20:28:17 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 23 Mar 2024 20:28:17 +0100
changeset 647
fcd85176ea2e
parent 640
0f6daacdd597
permissions
-rw-r--r--

Work to move dht userspace code to kernel module.

# Makefile for the mbsePi-apps/thermferm.

include ../Makefile.global

OTHER		= Makefile rc.thermferm default

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

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

all:


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

install:
		mkdir -p ${DESTDIR}/etc/rc.d ${DESTDIR}/etc/default
		${INSTALL} -c -g root -o root -m 0755 rc.thermferm ${DESTDIR}/etc/rc.d/rc.thermferm
		${INSTALL} -c -g root -o root -m 0644 default ${DESTDIR}/etc/default/thermferm

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

depend:

mercurial