diff options
author | zavok <an2qzavok@gmail.com> | 2015-11-24 18:54:37 +0300 |
---|---|---|
committer | zavok <an2qzavok@gmail.com> | 2015-11-24 18:54:37 +0300 |
commit | 377dc49065ab9366b06cafdb9ff909dc13875614 (patch) | |
tree | 0c70a10a384c8cbfcd615815a00030f4b68f4786 /Makefile | |
parent | baf9529e6d9737e5c37463d693f1764f830b0c3b (diff) |
minor cleanup and root Makefile now triggers pinentry Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -24,12 +24,16 @@ config.h: ${OBJ}: config.h config.mk drw.h -spine: spine.o drw.o util.o +pinentry: + $(MAKE) -C pinentry + +spine: pinentry spine.o drw.o util.o @echo CC -o $@ @${CC} -o $@ spine.o drw.o util.o pinentry/pinentry.o pinentry/util.o pinentry/password-cache.o pinentry/argparse.o pinentry/secmem.o ${LDFLAGS} -lassuan -lgpgme -lgpg-error clean: @echo cleaning @rm -f spine ${OBJ} + $(MAKE) -C pinentry/ clean -.PHONY: all options clean +.PHONY: all options clean pinentry |