Skip to content

Commit

Permalink
Use $(CC) instead of gcc for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerb9 committed Mar 14, 2024
1 parent 178067f commit 7529f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adjunct/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ tokenize: m100-tokenize m100-jumps m100-decomment m100-crunch

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

clean:
rm m100-tokenize m100-jumps m100-decomment m100-crunch 2>/dev/null || true
Expand Down

0 comments on commit 7529f14

Please sign in to comment.