lib/Makefile

Sat, 17 May 2014 10:50:16 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 17 May 2014 10:50:16 +0200
changeset 39
442357970a34
parent 38
19422d958768
permissions
-rw-r--r--

More Makefiles made simpeler. Version 0.0.6

# Makefile for the library files.

include ../Makefile.global

SRCS		= $(wildcard *.c)
OBJS		= $(SRCS:.c=.o)
HDRS		= mbselib.h
TARGET		= libmbse.a

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

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

all:		${TARGET}

libmbse.a:	${OBJS}
		ar r $@ $?
		${RANLIB} $@

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

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
rc-switch.o: ../config.h mbselib.h
lock.o: ../config.h mbselib.h
logger.o: ../config.h mbselib.h
lcd-pcf8574.o: ../config.h mbselib.h
xutil.o: ../config.h mbselib.h
dht11.o: ../config.h mbselib.h
rdconfig.o: ../config.h mbselib.h
# End of generated dependencies

mercurial