Skip to content

Commit

Permalink
WIN compatible for UK
Browse files Browse the repository at this point in the history
  • Loading branch information
TCallaghan2 committed Nov 16, 2023
1 parent 42b69b6 commit 7215166
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions UKsrc/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,14 @@ else
endif

setup:
ifeq ($(OS), Windows_NT)
ifeq ("$(wildcard .\obj)", "")
mkdir .\obj
endif
ifeq ("$(wildcard .\mod)", "")
mkdir .\mod
endif
else
if [ ! -d "$(OBJ_DIR)" ]; then mkdir $(OBJ_DIR); fi
if [ ! -d "$(MOD_DIR)" ]; then mkdir $(MOD_DIR); fi
endif

0 comments on commit 7215166

Please sign in to comment.