From cf7fca303929958a60cbc367967c7c0bf8a40d57 Mon Sep 17 00:00:00 2001 From: jeefo Date: Tue, 13 Sep 2016 22:45:47 +0300 Subject: [PATCH] reverted some changes in makefile --- project/makefile | 25 ++++++++++--------------- project/yapb.vcxproj | 3 +++ project/yapb.vcxproj.filters | 5 +++++ 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/project/makefile b/project/makefile index 93267ea..65ab843 100644 --- a/project/makefile +++ b/project/makefile @@ -109,25 +109,20 @@ release: mkdir -p release $(MAKE) main DEBUG=false -release_mac: - $(MAKE) main MAC=true DEBUG=false +release_osx: + mkdir -p release + $(MAKE) main OSX=true DEBUG=false -debug_mac: - $(MAKE) main MAC=true DEBUG=true +debug_osx: + mkdir -p debug + $(MAKE) main OSX=true DEBUG=true -all_linux: - release debug +all_linux: release debug +all_osx: release_osx debug_osx +all: all_linux all_osx -all_mac: - release_mac debug_mac - -all: - all_linux all_mac - -default: - all_linux +default: all clean: rm -rf release rm -rf debug - diff --git a/project/yapb.vcxproj b/project/yapb.vcxproj index 9de0d83..b8162b2 100644 --- a/project/yapb.vcxproj +++ b/project/yapb.vcxproj @@ -41,6 +41,9 @@ + + + {C232645A-3B99-48F4-A1F3-F20CF0A9568B} yapb diff --git a/project/yapb.vcxproj.filters b/project/yapb.vcxproj.filters index 9456d00..5c6e46b 100644 --- a/project/yapb.vcxproj.filters +++ b/project/yapb.vcxproj.filters @@ -95,4 +95,9 @@ project + + + project + + \ No newline at end of file