diff -r 04c942cded91 -r 3721f9c08843 tools/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/Makefile Wed Jul 25 12:24:17 2018 +0200 @@ -0,0 +1,31 @@ +# 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 -s -g root -o root -m 0755 thermferm.init /etc/init.d/thermferm + +filelist: Makefile + BASE=`pwd`; \ + BASE=`basename $${BASE}`; \ + (for f in ${SRCS} ${HDRS} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist + +depend: