13 lines
156 B
Makefile
13 lines
156 B
Makefile
.PHONY: all tools grafx2 ziprelease
|
|
|
|
all: grafx2 tools
|
|
|
|
grafx2:
|
|
$(MAKE) -C src/
|
|
|
|
ziprelease: grafx2
|
|
$(MAKE) -C src/ ziprelease
|
|
|
|
tools:
|
|
$(MAKE) -C tools/
|