Skip to content

Commit

Permalink
Creates the parent folder with mkdir so it works on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
julman99 committed May 30, 2017
1 parent 9e62bd4 commit 7a608e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ all: eatmemory.c
$(CC) eatmemory.c -o eatmemory

install: eatmemory
install -D -m 0755 eatmemory $(PREFIX)/bin/
mkdir -p $(PREFIX)/bin
install -m 0755 eatmemory $(PREFIX)/bin/

clean:
rm -rf *o eatmemory

0 comments on commit 7a608e3

Please sign in to comment.