Skip to content

Commit

Permalink
added directory creation in install rules
Browse files Browse the repository at this point in the history
  • Loading branch information
RetroAntho committed Mar 9, 2022
1 parent 16c07d4 commit 8baff05
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tools/bin2txt/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ clean:
rm -f *.tds $(EXE)$(EXT) $(OBJS)

install:
cp $(EXE)$(EXT) ../../devkitsnes/tools/$(EXE)$(EXT)
mkdir -p ../../devkitsnes/tools && cp $(EXE)$(EXT) ../../devkitsnes/tools/$(EXE)$(EXT)
2 changes: 1 addition & 1 deletion tools/constify/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ clean:
rm -f $(EXE)$(EXT) $(OBJS)

install:
cp $(EXE)$(EXT) ../../devkitsnes/bin/$(EXE)$(EXT)
mkdir -p ../../devkitsnes/bin && cp $(EXE)$(EXT) ../../devkitsnes/bin/$(EXE)$(EXT)

2 changes: 1 addition & 1 deletion tools/gfx2snes/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ clean:
rm -f $(EXE)$(EXT) $(OBJS) *.tds

install:
cp $(EXE)$(EXT) ../../devkitsnes/tools/$(EXE)$(EXT)
mkdir -p ../../devkitsnes/tools && cp $(EXE)$(EXT) ../../devkitsnes/tools/$(EXE)$(EXT)
2 changes: 1 addition & 1 deletion tools/smconv/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ clean:
rm -f $(EXE)$(EXT) $(OBJS) *.tds

install:
cp $(EXE)$(EXT) ../../devkitsnes/tools/$(EXE)$(EXT)
mkdir -p ../../devkitsnes/tools && cp $(EXE)$(EXT) ../../devkitsnes/tools/$(EXE)$(EXT)
2 changes: 1 addition & 1 deletion tools/snesbrr/brr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ clean :
-$(RM) $(BINDIR)$(EXT)

install:
cp $(BINDIR)$(EXT) ../../../devkitsnes/tools/$(BIN)$(EXT)
mkdir -p ../../../devkitsnes/tools && cp $(BINDIR)$(EXT) ../../../devkitsnes/tools/$(BIN)$(EXT)

distclean : clean
-$(RM) $(DEP)
Expand Down
2 changes: 1 addition & 1 deletion tools/snestools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ clean:
rm -f $(EXE)$(EXT) $(OBJS)

install:
cp $(EXE)$(EXT) ../../devkitsnes/tools/$(EXE)$(EXT)
mkdir -p ../../devkitsnes/tools && cp $(EXE)$(EXT) ../../devkitsnes/tools/$(EXE)$(EXT)

0 comments on commit 8baff05

Please sign in to comment.