소스 검색

used gcc for building osx; updated makefile accordingly

Josh Bicking 8 년 전
부모
커밋
dfe683a2a5
2개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      Makefile
  2. BIN
      bin/osx/FalloutTerminal-osx.zip

+ 6 - 1
Makefile

@@ -1,4 +1,9 @@
-CC = gcc
+ifeq ($(shell uname -s),Darwin)
+	CC = /usr/local/Cellar/gcc/5.3.0/bin/gcc-5 
+else
+	CC = gcc
+endif 
+
 CFLAGS = -std=c99
 
 # DEBUGGING FLAGS

BIN
bin/osx/FalloutTerminal-osx.zip