brewco/Makefile

changeset 409
cdf68044adaf
child 434
eb724767860d
equal deleted inserted replaced
408:ec507c1f1df7 409:cdf68044adaf
1 # Makefile for the mbsePi-apps/brewco.
2
3 include ../Makefile.global
4
5 SRCS = $(wildcard *.c)
6 HDRS = $(wildcard *.h)
7 OBJS = $(SRCS:.c=.o)
8 SLIBS = -lpthread
9 TARGET = brewco
10 OTHER = Makefile
11
12 #############################################################################
13
14 .c.o:
15 ${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $<
16
17 all: ${TARGET}
18
19 brewco: ${OBJS} ${SLIBS}
20 ${CC} -o brewco ${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 brewco ${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 futil.o: brewco.h futil.h
58 brewco.o: rdconfig.h brewco.h futil.h xutil.h
59 xutil.o: brewco.h xutil.h
60 rdconfig.o: rdconfig.h brewco.h futil.h xutil.h
61 # End of generated dependencies

mercurial