Fix indentation in makefile

This commit is contained in:
Michaelangel007 2014-12-29 14:58:09 -08:00
parent ea5b24b1f9
commit b34a0dd3be
1 changed files with 5 additions and 5 deletions

View File

@ -3,12 +3,12 @@
ifeq ($(OS),Windows_NT)
echo "Use MSVC Solution/Project"
else
UNAME = $(shell uname -s)
UNAME = $(shell uname -s)
ifeq ($(UNAME),Linux)
TARGET=bin/hgr2rgb.elf
endif
ifeq ($(UNAME),Darwin)
ifeq ($(UNAME),Linux)
TARGET=bin/hgr2rgb.elf
endif
ifeq ($(UNAME),Darwin)
TARGET=bin/hgr2rgb.osx
endif
endif