aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-12-07 23:48:45 +0100
committerMattias Andrée <maandree@kth.se>2017-12-07 23:48:45 +0100
commit4d7c506a29a5153a2b6ab903d2f4731bbab6abcb (patch)
tree67bdf5fa8d517cd9fc137f45567f4e312a0f4fc9 /Makefile
parentblind-peek-head: fix minor compile-time bug (diff)
downloadblind-4d7c506a29a5153a2b6ab903d2f4731bbab6abcb.tar.gz
blind-4d7c506a29a5153a2b6ab903d2f4731bbab6abcb.tar.bz2
blind-4d7c506a29a5153a2b6ab903d2f4731bbab6abcb.tar.xz
Start on libblind
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8d611c5..e2f12c4 100644
--- a/Makefile
+++ b/Makefile
@@ -13,13 +13,15 @@ KSH_SCRIPTS =\
blind-primary-key
COMMON_OBJ =\
- util.o\
- stream.o
+ libblind.o\
+ stream.o\
+ util.o
HDR =\
arg.h\
common.h\
define-functions.h\
+ libblind.h\
stream.h\
util.h\
util/to.h\
@@ -39,7 +41,6 @@ MISCFILES =\
Makefile\
config.mk\
blind.mk\
- rules.mk\
LICENSE\
README\
TODO\
@@ -75,6 +76,10 @@ build/files.mk: files.mk
printf '\n\nMAN =' && \
printf '\\\n\tman1/%s.1' $(BIN) $(SH_SCRIPTS) $(KSH_SCRIPTS) && \
printf '\\\n\tman7/%s.7' $(MAN7) && \
+ printf '\n\nMAN1 =' && \
+ printf '\\\n\t%s.1' $(BIN) $(SH_SCRIPTS) $(KSH_SCRIPTS) && \
+ printf '\n\nMAN7 =' && \
+ printf '\\\n\t%s.7' $(MAN7) && \
printf '\n' \
) > $@.$$$$ && mv $@.$$$$ $@
@@ -96,3 +101,4 @@ clean:
@make -f blind.mk $@
.PHONY: all clean
+.PRECIOUS: build/files.mk build/common-files.mk