Skip to content

Commit

Permalink
Remove explicit call to cc in hope MacOS will figure it out
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerb9 committed Mar 14, 2024
1 parent 1fa5199 commit 9d19520
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions adjunct/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
tokenize: m100-tokenize m100-jumps m100-decomment m100-crunch
BINS := m100-tokenize m100-jumps m100-decomment m100-crunch

# Tokenizer that preserves comments
m100-tokenize: m100-tokenize.c
$(CC) $< -o $@
tokenize: $(BINS)

clean:
rm m100-tokenize m100-jumps m100-decomment m100-crunch 2>/dev/null || true
rm $(BINS) 2>/dev/null || true

0 comments on commit 9d19520

Please sign in to comment.