Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frotz/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Define path for ar
AR = /usr/bin/ar
AR = $(shell which ar)

# Define path for ranlib
RANLIB = /usr/bin/ranlib
RANLIB = $(shell which ranlib)

# Define your C compiler. I recommend gcc if you have it.
# MacOS users should use "cc" even though it's really "gcc".
Expand Down
Loading