# PSX2LIB 1.0b
# 
# PSX2 OpenSource Project
# (C)2001, Gustavo Scotti (gustavo@scotti.com)
#
# Makefile Structure based on KOS Makefiles by Dan Potter

all: build-utils build-libkernel  build-samples

clean:
	-rm -f lib/*
	$(PSX2LIB_MAKE) -C utils clean
	$(PSX2LIB_MAKE) -C libkernel clean
	$(PSX2LIB_MAKE) -C sample clean

build-utils:
	$(PSX2LIB_MAKE) -C utils

build-libkernel:
	$(PSX2LIB_MAKE) -C libkernel

build-samples:
	$(PSX2LIB_MAKE) -C sample
