Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogMan151 committed Jul 24, 2019
1 parent 400f8db commit 5afe245
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
TARGET_EXEC ?= vita-mcr2vmp
ifeq ($(OS),Windows_NT)
TARGET_EXEC ?= vita-mcr2vmp-win
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
TARGET_EXEC ?= vita-mcr2vmp-linux
endif
ifeq ($(UNAME_S),Darwin)
TARGET_EXEC ?= vita-mcr2vmp-macos
endif
endif

BUILD_DIR ?= ./build
SRC_DIRS ?= ./src ./include
Expand Down

0 comments on commit 5afe245

Please sign in to comment.