aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorHiltjo Posthuma <[email protected]>2015-12-20 17:11:25 +0100
committerHiltjo Posthuma <[email protected]>2015-12-20 17:11:25 +0100
commit7102cfd3f76ebf6f6caf774f2209000c22233d39 (patch)
tree2d619d4dc39ed35e75501480a9d8daf8f05b1f6e /Makefile
parent372fe8d86e621b09dadb893b2153f643a70cab7f (diff)
downloadstagit-7102cfd3f76ebf6f6caf774f2209000c22233d39.tar.gz
stagit-7102cfd3f76ebf6f6caf774f2209000c22233d39.zip
add urmoms-index, initial version
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 499b707..cddef58 100644
--- a/Makefile
+++ b/Makefile
@@ -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}