diff options
author | Richard Mortier <mort@cantab.net> | 2019-08-23 11:22:26 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-11-07 12:01:13 +0000 |
commit | b3dcf19ef71a38836917a58ff0ade833d0438a0a (patch) | |
tree | c40df5245e994b3d56a459a4df6d99266f1a34ba | |
parent | c486b3b4f38719bba8e97b7628507f90cf26631f (diff) | |
download | abuild-b3dcf19ef71a38836917a58ff0ade833d0438a0a.tar.gz abuild-b3dcf19ef71a38836917a58ff0ade833d0438a0a.tar.bz2 abuild-b3dcf19ef71a38836917a58ff0ade833d0438a0a.tar.xz abuild-b3dcf19ef71a38836917a58ff0ade833d0438a0a.zip |
make: add `depends` target
Signed-off-by: Richard Mortier <mort@cantab.net>
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,3 @@ - PACKAGE := abuild VERSION := 3.4.0 @@ -120,6 +119,9 @@ install: $(USR_BIN_FILES) $(SAMPLES) abuild.conf functions.sh cp $(AUTOTOOLS_TOOLCHAIN_FILES) $(DESTDIR)/$(prefix)/share/abuild/ cp functions.sh $(DESTDIR)/$(sharedir)/ +depends depend: + sudo apk --no-cache add -U openssl-dev zlib-dev + .gitignore: Makefile echo "*.tar.bz2" > $@ for i in $(USR_BIN_FILES); do\ |