2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2025-04-06 17:49:00 +03:00
metamod-r/Makefile
2016-07-04 12:07:29 +06:00

32 lines
532 B
Makefile

# vi: set ts=4 sw=4 :
# vim: set tw=75 :
# MetaMod toplevel makefile
# Copyright (c) 2001-2003 Will Day <willday@hpgx.net>
#
# some sections as demonstated in GNU's make.info documentation
include Config.mak
ifeq "$(USER)" "willday"
include priv/top.mak
endif
.DEFAULT:
for i in $(SUBDIRS); do \
$(MAKE) -C $$i $@ || exit; \
done
.PHONY: subdirs dlls $(SUBDIRS)
subdirs: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
clean cleanall:
for i in $(SUBDIRS); do \
$(MAKE) -C $$i cleanall || exit; \
done
-rm dlls/* dlls/debug/*