mirror of
https://github.com/team2059/Zaphod
synced 2024-12-18 20:12:28 -05:00
16 lines
265 B
Makefile
16 lines
265 B
Makefile
|
#UCPP makefile
|
||
|
|
||
|
# Default target
|
||
|
all: force
|
||
|
cd PPC603gnu && exec "$(MAKE)" -f Makefile_linux
|
||
|
|
||
|
# Don't do anything for the "Makefile" target
|
||
|
Makefile: ;
|
||
|
|
||
|
# Recursively run all other targets
|
||
|
%: force
|
||
|
cd PPC603gnu && exec "$(MAKE)" -f Makefile_linux "$*"
|
||
|
|
||
|
force: ;
|
||
|
|