Skip to content

Commit

Permalink
Add $(DESTDIR)
Browse files Browse the repository at this point in the history
  • Loading branch information
sl1pkn07 authored and AKuHAK committed Sep 29, 2024
1 parent 3a827d8 commit 0645eff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ee/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ clean:
rm -f -r $(EE_OBJS_DIR) $(EE_LIB_DIR)

install:
mkdir -p $(PS2DEV)/isjpcm/include $(PS2DEV)/isjpcm/lib
cp $(EE_SRC_DIR)*.h $(PS2DEV)/isjpcm/include
cp $(EE_LIB) $(PS2DEV)/isjpcm/lib
mkdir -p $(DESTDIR)$(PS2DEV)/isjpcm/include $(DESTDIR)$(PS2DEV)/isjpcm/lib
cp $(EE_SRC_DIR)*.h $(DESTDIR)$(PS2DEV)/isjpcm/include
cp $(EE_LIB) $(DESTDIR)$(PS2DEV)/isjpcm/lib

include $(PS2SDK)/Defs.make
#include ./Rules.make
Expand Down
4 changes: 2 additions & 2 deletions iop/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ clean:
rm -f -r $(IOP_OBJS_DIR) $(IOP_BIN_DIR)

install:
mkdir -p $(PS2DEV)/isjpcm/bin
cp $(IOP_BIN) $(PS2DEV)/isjpcm/bin
mkdir -p $(DESTDIR)$(PS2DEV)/isjpcm/bin
cp $(IOP_BIN) $(DESTDIR)$(PS2DEV)/isjpcm/bin

include $(PS2SDK)/Defs.make
# include $(PS2SDK)/samples/Makefile.iopglobal
Expand Down

0 comments on commit 0645eff

Please sign in to comment.