worldspawn/Makefile

14 lines
258 B
Makefile
Raw Normal View History

2021-06-02 01:49:27 -07:00
all:
cp -Rv ./resources/ ./build/
cd libs && $(MAKE)
cd radiant && $(MAKE)
cd plugins && $(MAKE)
cd tools && $(MAKE)
clean:
-rm -rf ./build
cd libs && $(MAKE) clean
cd radiant && $(MAKE) clean
cd plugins && $(MAKE) clean
cd tools && $(MAKE) clean