diff options
author | pommicket <pommicket@gmail.com> | 2023-02-28 14:13:06 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-02-28 14:13:06 -0500 |
commit | 5e92dac7b8ff9d60bfa3dcc69c3f77663a01aea4 (patch) | |
tree | bfc1faa98f94930dbb6946fc0f0f8d249c5087bd /Makefile | |
parent | 11300a7e247eeb28c101f43a51d8dbfde0479eaa (diff) |
new settings system seems to be working
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -11,10 +11,12 @@ LOCAL_DATA_DIR=/home/`logname`/.local/share/ted INSTALL_BIN_DIR=/usr/bin debug-build: ted compile_commands.json ted: debug/ted - @# note: doing cp would fail if `ted` is busy - cat debug/ted > ted + @# note: needed so cp doesn't fail if `ted` is busy + rm -f ted + cp debug/ted . compile_commands.json: debug/ted - cat debug/compile_commands.json > compile_commands.json + rm -f compile_commands.json + cp debug/compile_commands.json . debug/ted: *.[ch] libpcre2-32.a CMakeLists.txt mkdir -p debug cd debug && cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DCMAKE_BUILD_TYPE=Debug -GNinja .. |