Skip to content

Commit

Permalink
Modified Makefile to work on BSD as well
Browse files Browse the repository at this point in the history
  • Loading branch information
sambattalio committed Feb 13, 2020
1 parent e5d870f commit 0f7d089
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ chad_stride: chad_stride.c
$(CC) $(CFLAGS) -o $@ $^ $(LIB)

install: chad_stride
install -m 755 -D chad_stride $(PREFIX)/bin/chad_stride
mkdir -p $(PREFIX)/bin
install -m 755 chad_stride $(PREFIX)/bin/chad_stride
ln -s $(PREFIX)/bin/chad_stride $(PREFIX)/bin/cs

uninstall:
rm -f $(PREFIX)/bin/chad_stride
Expand Down

0 comments on commit 0f7d089

Please sign in to comment.