Skip to content

Commit

Permalink
Merge pull request #5 from handlename/master
Browse files Browse the repository at this point in the history
support MacOS
  • Loading branch information
keiji0 committed Jan 28, 2013
2 parents 5a70418 + b8b81d9 commit 88a5ca8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
ifeq ($(OS),Windows_NT)
LIBS=-lpdcurses -lkernel32
LIBS=-lpdcurses -lkernel32
else ifeq ($(shell uname -s),Darwin)
LIBS=-lncurses
else
LIBS=-lncursesw
LIBS=-lncursesw
endif

canything: canything.c
Expand Down

0 comments on commit 88a5ca8

Please sign in to comment.