We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b5f029 commit b1a457cCopy full SHA for b1a457c
common/external_deps/Makefile
@@ -8,9 +8,9 @@ all:
8
clean:
9
@$(PRINTF) 'Cleaning PS2SDK dependencies.\n'
10
@$(PRINTF) 'Cleaning lwip.\n'
11
- rm -rf $(LWIP) $(LWIP)_inprogress
+ rm -rf $(LWIP)_inprogress
12
@$(PRINTF) 'Cleaning fatfs.\n'
13
- rm -rf $(FATFS) $(FATFS)_inprogress
+ rm -rf $(FATFS)_inprogress
14
15
release:
16
@cd .
download_dependencies.sh
@@ -1,6 +1,9 @@
1
#!/bin/bash
2
# download_depdencies.sh by Francisco Javier Trujillo Mata (fjtrujy@gmail.com)
3
4
+# Downloading dependencies is handled by 'repo' in ps2max environment
5
+exit 0
6
+
7
## Protect reentrancy of this script if possible
if [ "x$1" != "xlocked" ]; then
if command -v flock > /dev/null; then
0 commit comments