Below is the file 'src/common/Makefile' from this revision. You can also download the file.
# Makefile
OBJS=	hash.o mem.o
SRCS=	hash.c mem.c
INCDIR=../include
CFLAGS+=	-Wall -Werror
CPPFLAGS+=	-I${INCDIR}
all:	${OBJS}
install:
depend:
	mkdep -- ${CFLAGS} ${CPPFLAGS} ${SRCS}
clean:
	rm -f ${OBJS}