Skip to content

Commit

Permalink
Fixed: silent command symbols '@' inside conditionnal blocks in the M…
Browse files Browse the repository at this point in the history
…akefile
  • Loading branch information
Dan Peori committed Dec 8, 2010
1 parent fa58ca3 commit a184b96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions psl1ght/Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ all: $(STUBS)
@make -C tools/raw2h --no-print-directory @make -C tools/raw2h --no-print-directory
@make -C tools/ps3load --no-print-directory @make -C tools/ps3load --no-print-directory
@make -C tools/sprxlinker --no-print-directory @make -C tools/sprxlinker --no-print-directory
@if test -e $(CGINCLUDE); then @make -C tools/vpcomp --no-print-directory; fi @if test -e $(CGINCLUDE); then make -C tools/vpcomp --no-print-directory; fi
@make -C tools/PS3Py --no-print-directory @make -C tools/PS3Py --no-print-directory
@make -f Makefile.lib --no-print-directory @make -f Makefile.lib --no-print-directory
@make -C libc-glue-ppu --no-print-directory @make -C libc-glue-ppu --no-print-directory
Expand All @@ -28,7 +28,7 @@ clean:
@make -C tools/raw2h clean --no-print-directory @make -C tools/raw2h clean --no-print-directory
@make -C tools/ps3load clean --no-print-directory @make -C tools/ps3load clean --no-print-directory
@make -C tools/sprxlinker clean --no-print-directory @make -C tools/sprxlinker clean --no-print-directory
@if test -e $(CGINCLUDE); then @make -C tools/vpcomp clean --no-print-directory; fi @if test -e $(CGINCLUDE); then make -C tools/vpcomp clean --no-print-directory; fi
@make -C tools/PS3Py clean --no-print-directory @make -C tools/PS3Py clean --no-print-directory
@make -f Makefile.lib clean --no-print-directory @make -f Makefile.lib clean --no-print-directory
@make -C libc-glue-ppu clean --no-print-directory @make -C libc-glue-ppu clean --no-print-directory
Expand All @@ -42,7 +42,7 @@ install: all
@cp -r include $(PSL1GHT)/ @cp -r include $(PSL1GHT)/
@cp Makefile.base $(PSL1GHT)/ @cp Makefile.base $(PSL1GHT)/
@cp tools/raw2h/raw2h tools/ps3load/ps3load tools/sprxlinker/sprxlinker $(PSL1GHT)/bin/ @cp tools/raw2h/raw2h tools/ps3load/ps3load tools/sprxlinker/sprxlinker $(PSL1GHT)/bin/
@if test -e $(CGINCLUDE); then @cp tools/vpcomp/vpcomp $(PSL1GHT)/bin/; fi @if test -e $(CGINCLUDE); then cp tools/vpcomp/vpcomp $(PSL1GHT)/bin/; fi
@cp tools/PS3Py/fself.py $(PSL1GHT)/bin/ @cp tools/PS3Py/fself.py $(PSL1GHT)/bin/
@cp tools/PS3Py/Struct.py $(PSL1GHT)/bin/ @cp tools/PS3Py/Struct.py $(PSL1GHT)/bin/
@cp tools/PS3Py/sfo.py $(PSL1GHT)/bin/ @cp tools/PS3Py/sfo.py $(PSL1GHT)/bin/
Expand Down

0 comments on commit a184b96

Please sign in to comment.