add urmoms-index, initial version

This commit is contained in:
Hiltjo Posthuma
2015-12-20 17:11:25 +01:00
parent 372fe8d86e
commit 7102cfd3f7
3 changed files with 342 additions and 3 deletions

View File

@@ -3,11 +3,14 @@ include config.mk
NAME = urmoms
VERSION = 0.1
SRC = \
urmoms.c
urmoms.c\
urmoms-index.c
BIN = \
urmoms
urmoms\
urmoms-index
MAN1 = \
urmoms.1
urmoms.1\
urmoms-index.1
DOC = \
LICENSE\
README\
@@ -42,6 +45,9 @@ config.h:
urmoms: urmoms.o
${CC} -o $@ urmoms.o ${LDFLAGS}
urmoms-index: urmoms-index.o
${CC} -o $@ urmoms-index.o ${LDFLAGS}
clean:
rm -f ${BIN} ${OBJ}