ソースを参照

Simplified Makefile

Jan Potocki 5年前
コミット
526749deed
1個のファイルの変更1行の追加5行の削除
  1. 1
    5
      Makefile

+ 1
- 5
Makefile ファイルの表示

@@ -1,10 +1,6 @@
1 1
 CXXFLAGS =	-O3 -Wall -std=c++11
2 2
 
3
-ifeq ($(OS),Windows_NT)
4
-	detected_OS := Windows
5
-else
6
-	detected_OS := $(shell uname)
7
-endif
3
+detected_OS := $(shell uname)
8 4
 ifeq ($(detected_OS),Darwin)
9 5
     CXXFLAGS += -stdlib=libc++
10 6
 endif

読み込み中…
キャンセル
保存