Skip to content

Commit b1a457c

Browse files
committed
Handle git dependencies externally
1 parent 6b5f029 commit b1a457c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

common/external_deps/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ all:
88
clean:
99
@$(PRINTF) 'Cleaning PS2SDK dependencies.\n'
1010
@$(PRINTF) 'Cleaning lwip.\n'
11-
rm -rf $(LWIP) $(LWIP)_inprogress
11+
rm -rf $(LWIP)_inprogress
1212
@$(PRINTF) 'Cleaning fatfs.\n'
13-
rm -rf $(FATFS) $(FATFS)_inprogress
13+
rm -rf $(FATFS)_inprogress
1414

1515
release:
1616
@cd .

download_dependencies.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/bash
22
# download_depdencies.sh by Francisco Javier Trujillo Mata (fjtrujy@gmail.com)
33

4+
# Downloading dependencies is handled by 'repo' in ps2max environment
5+
exit 0
6+
47
## Protect reentrancy of this script if possible
58
if [ "x$1" != "xlocked" ]; then
69
if command -v flock > /dev/null; then

0 commit comments

Comments
 (0)