aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2017-06-02 22:11:06 +0200
committerChristian Hesse <mail@eworm.de>2017-06-02 23:11:18 +0200
commit899e7039f50cbc98408ad052a58589e18edeaa6b (patch)
tree0f5a0465bb6f3fcda10ea545ae94971079f28679 /Makefile
parent6ad1a9739fe685e2ed9ca2c515b15e772f3f12b2 (diff)
downloadvis-899e7039f50cbc98408ad052a58589e18edeaa6b.tar.gz
vis-899e7039f50cbc98408ad052a58589e18edeaa6b.tar.xz
port self-contained executable to libtar
libarchive is nice, but adds a lot of bloat we carry around without using it. So port to libtar.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 990913d..9b30303 100644
--- a/Makefile
+++ b/Makefile
@@ -85,7 +85,7 @@ vis-single-payload.inc: $(EXECUTABLES) lua/*
echo '#endif' >> $@
vis-single: vis-single.c vis-single-payload.inc
- ${CC} ${CFLAGS} ${CFLAGS_AUTO} ${CFLAGS_STD} ${CFLAGS_EXTRA} $< ${LDFLAGS} ${LDFLAGS_STD} ${LDFLAGS_AUTO} -larchive -lacl -lbz2 -llzma -o $@
+ ${CC} ${CFLAGS} ${CFLAGS_AUTO} ${CFLAGS_STD} ${CFLAGS_EXTRA} $< ${LDFLAGS} ${LDFLAGS_STD} ${LDFLAGS_AUTO} -ltar -llzma -o $@
${STRIP} $@
docker: clean