ps2rom/Makefile

15 lines
209 B
Makefile

.PHONY: all clean
TOP=$(shell pwd)
# Set a default configuration.
ifeq ($(CONFIG),)
CONFIG=release
endif
all:
make -C rom TOP=$(TOP) CONFIG=$(CONFIG)
clean:
make -C rom TOP=$(TOP) CONFIG=$(CONFIG) clean