From b99f73b58460de943c63b23f2be9acb02e0023a6 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+orbitalquark@users.noreply.github.com> Date: Sat, 26 Feb 2022 00:13:23 -0500 Subject: Fixed another bug introduced during Makefile refactor. For the git repo, put the piped expression on its own line. --- src/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index bad15b59..c6a8482e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -382,7 +382,9 @@ else endif # TODO: CXXFLAGS="$(CXXFLAGS) -static-libstdc++" -$(linux_dir): $(linux_exes) ; $(call archive,$@) && cp -rL ../docs ../lexers $^ $@ +$(linux_dir): $(linux_exes) + $(call archive,$@) + cp -rL ../docs ../lexers $^ $@ $(linux_dir).tgz: $(linux_dir) ; tar czf $<.tgz $< && rm -r $< $(win_dir): $(win_exes) -- cgit v1.2.3