diff -r ec507c1f1df7 -r cdf68044adaf brewpanel/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/brewpanel/Makefile Sat Nov 07 22:04:17 2015 +0100 @@ -0,0 +1,63 @@ +# Makefile for the mbsePi-apps/brewpanel. + +include ../Makefile.global + +SRCS = $(wildcard *.c) +HDRS = $(wildcard *.h) +OBJS = lcdfont10x16.h $(SRCS:.c=.o) +SLIBS = +TARGET = brewpanel +OTHER = Makefile lcdfont5x8.bmp + +############################################################################# + +.c.o: + ${CC} ${CFLAGS} ${SDL_CFLAGS} ${INCLUDES} ${DEFINES} -c $< + +all: ${TARGET} + +brewpanel: ${OBJS} ${SLIBS} + ${CC} -o ${TARGET} ${OBJS} ${LDFLAGS} ${LIBS} ${SDL_LIBS} ${SLIBS} + +lcdfont10x16.h: lcdfont5x8.bmp + convert -scale 160x256 lcdfont5x8.bmp xbm:lcdfont10x16.h + +clean: + rm -f ${TARGET} *.o *.h~ *.c~ lcdfont5x8.h lcdfont10x16.h core filelist Makefile.bak + +install: all + ${INSTALL} -c -s -g root -o root -m 0755 brewpanel ${BINDIR} + +filelist: Makefile + BASE=`pwd`; \ + BASE=`basename $${BASE}`; \ + (for f in ${SRCS} ${HDRS} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist + +depend: + @rm -f Makefile.bak; \ + mv Makefile Makefile.bak; \ + sed -e '/^# DO NOT DELETE/,$$d' Makefile.bak >Makefile; \ + ${ECHO} '# DO NOT DELETE THIS LINE - MAKE DEPEND RELIES ON IT' \ + >>Makefile; \ + ${ECHO} '# Dependencies generated by make depend' >>Makefile; \ + for f in ${SRCS}; \ + do \ + ${ECHO} "Dependencies for $$f:\c"; \ + ${ECHO} "`basename $$f .c`.o:\c" >>Makefile; \ + for h in `sed -n -e \ + 's/^#[ ]*include[ ]*"\([^"]*\)".*/\1/p' $$f`; \ + do \ + ${ECHO} " $$h\c"; \ + ${ECHO} " $$h\c" >>Makefile; \ + done; \ + ${ECHO} " done."; \ + ${ECHO} "" >>Makefile; \ + done; \ + ${ECHO} '# End of generated dependencies' >>Makefile + +# DO NOT DELETE THIS LINE - MAKE DEPEND RELIES ON IT +# Dependencies generated by make depend +sdlgui.o: brewpanel.h sdlgui.h lcdfont10x16.h +dlgBrew.o: brewpanel.h dlgBrew.h sdlgui.h +brewpanel.o: brewpanel.h sdlgui.h dlgBrew.h +# End of generated dependencies