thermferm/Makefile

changeset 41
f534ace74eea
parent 39
442357970a34
child 43
24e731bb2e08
equal deleted inserted replaced
40:dafbbd5e9922 41:f534ace74eea
1 # Makefile for the mbsePi-apps/thermferm.
2
3 include ../Makefile.global
4
5 SRCS = $(wildcard *.c)
6 HDRS = $(wildcard *.h)
7 OBJS = $(SRCS:.c=.o)
8 SLIBS = -lpthread ../lib/libmbse.a
9 TARGET = thermferm
10 OTHER = Makefile
11
12 #############################################################################
13
14 .c.o:
15 ${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $<
16
17 all: ${TARGET}
18
19 thermferm: ${OBJS} ${SLIBS}
20 ${CC} -o thermferm ${OBJS} ${LDFLAGS} ${LIBS} ${SLIBS}
21
22 clean:
23 rm -f ${TARGET} *.o *.h~ *.c~ core filelist Makefile.bak
24
25 install: all
26 ${INSTALL} -c -s -g root -o root -m 0755 thermometers ${BINDIR}
27
28 filelist: Makefile
29 BASE=`pwd`; \
30 BASE=`basename $${BASE}`; \
31 (for f in ${SRCS} ${HDRS} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist
32
33 depend:
34 @rm -f Makefile.bak; \
35 mv Makefile Makefile.bak; \
36 sed -e '/^# DO NOT DELETE/,$$d' Makefile.bak >Makefile; \
37 ${ECHO} '# DO NOT DELETE THIS LINE - MAKE DEPEND RELIES ON IT' \
38 >>Makefile; \
39 ${ECHO} '# Dependencies generated by make depend' >>Makefile; \
40 for f in ${SRCS}; \
41 do \
42 ${ECHO} "Dependencies for $$f:\c"; \
43 ${ECHO} "`basename $$f .c`.o:\c" >>Makefile; \
44 for h in `sed -n -e \
45 's/^#[ ]*include[ ]*"\([^"]*\)".*/\1/p' $$f`; \
46 do \
47 ${ECHO} " $$h\c"; \
48 ${ECHO} " $$h\c" >>Makefile; \
49 done; \
50 ${ECHO} " done."; \
51 ${ECHO} "" >>Makefile; \
52 done; \
53 ${ECHO} '# End of generated dependencies' >>Makefile
54
55 # DO NOT DELETE THIS LINE - MAKE DEPEND RELIES ON IT
56 # Dependencies generated by make depend
57 thermferm.o: ../lib/mbselib.h thermferm.h mosquitto.h sensors.h
58 sensors.o: ../lib/mbselib.h sensors.h
59 mosquitto.o: ../lib/mbselib.h mosquitto.h
60 # End of generated dependencies

mercurial