Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fables-tales committed Aug 6, 2021
1 parent e6131cf commit 37f8206
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ LDFLAGS += -lz
all: release debug

debug:
bash -c "find target/debug | grep -i 'librubyfmt-.*\.a' | xargs rm"
bash -c "find target/debug | grep -i 'librubyfmt-.*\.a' | xargs rm; exit 0"
cargo build

release:
bash -c "find target/release | grep -i 'librubyfmt-.*\.a' | xargs rm"
bash -c "find target/release | grep -i 'librubyfmt-.*\.a' | xargs rm; exit 0"
cargo build --release

target/c_main_debug: target/debug/deps/librubyfmt-*.a src/main.c
Expand Down

0 comments on commit 37f8206

Please sign in to comment.