Skip to content

Commit

Permalink
This just annoyed me when installing from a clean toolchain.
Browse files Browse the repository at this point in the history
  • Loading branch information
Miigotu authored and zerkman committed Apr 12, 2011
1 parent 7ee4f75 commit da98c0b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ ifeq ($(strip $(DEVKITPS3)),)
$(error "Please set DEVKITPS3 in your environment. export DEVKITPS3=<path>")
endif

all:
all: install-ctrl
@make -C common --no-print-directory
@make -C ppu --no-print-directory
@make -C spu --no-print-directory
@make -C tools --no-print-directory

install-ctrl:
@[ -d $(DEVKITPS3) ] || mkdir -p $(DEVKITPS3)
@cp -frv base_rules $(DEVKITPS3)
@cp -frv ppu_rules $(DEVKITPS3)
@cp -frv spu_rules $(DEVKITPS3)

@[ -f $(DEVKITPS3)/base_rules ] || cp -frv base_rules $(DEVKITPS3)
@[ -f $(DEVKITPS3)/ppu_rules ] || cp -frv ppu_rules $(DEVKITPS3)
@[ -f $(DEVKITPS3)/spu_rules ] || cp -frv spu_rules $(DEVKITPS3)
install-socat:
@make -C tools install-socat --no-print-directory

Expand Down

0 comments on commit da98c0b

Please sign in to comment.