diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-04-20 19:33:33 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-04-20 19:33:33 -0400 |
commit | f1a5e67911f92318dab3f980808874b8369389d6 (patch) | |
tree | 02cd3361dd5577c6017f3247cad1bc2b488d6af3 /Makefile | |
parent | adc0e91ddbe70c2127d39c337d9b4a09ea752425 (diff) |
fix non-GNU build
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ release: *.[ch] libpcre2-32.a profile: *.[ch] libpcre2-32.a $(CC) main.c -o ted $(PROFILE_CFLAGS) $(LIBS) clean: - rm -f ted *.o + rm -f ted *.o *.a install: release @[ -w `dirname $(GLOBAL_DATA_DIR)` ] || { echo "You need permission to write to $(GLOBAL_DATA_DIR). Try running with sudo/as root." && exit 1; } @[ -w `dirname $(INSTALL_BIN_DIR)` ] || { echo "You need permission to write to $(INSTALL_BIN_DIR). Try running with sudo/as root." && exit 1; } |