120e947d6e
GNU make is a requirement to build Magicka: make this explicit with the naming of the files. Signed-off-by: Dan Cross <patchdev@fat-dragon.org>
18 lines
334 B
Makefile
18 lines
334 B
Makefile
OS := $(shell uname -s | tr '[A-Z]' '[a-z]' | sed 's/darwin/osx/')
|
|
|
|
all: magicka
|
|
|
|
.PHONY: magicka www clean cleanwww
|
|
|
|
magicka:
|
|
cd src && $(MAKE) -f GNUmakefile.$(OS)
|
|
|
|
www:
|
|
cd src && $(MAKE) -f GNUmakefile.$(OS).WWW
|
|
|
|
clean:
|
|
cd src && $(MAKE) -f GNUmakefile.$(OS) clean
|
|
|
|
cleanwww:
|
|
cd src && $(MAKE) -f GNUmakefile.$(OS).WWW clean
|