# quake3/source/Makefile
# Top level makefile for compiling Quake3 game source
# By James Abbatiello (abbeyj@frag.com)

SUBDIRS = game cgame ui

all: $(SUBDIRS)
	@echo Build completed.

.PHONY: all clean $(SUBDIRS)

$(SUBDIRS):
	@make -C $@

clean:
	-@$(foreach dir, $(SUBDIRS), $(MAKE) $@ -C $(dir);)
