diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -.PHONY: all configure build ark cross soul run install clean distclean +.PHONY: all configure build ark cross world run install clean distclean BUILD_DIR ?= build BUILD_TYPE ?= Debug @@ -18,8 +18,8 @@ ark: configure cross: configure cmake --build $(BUILD_DIR) --target cross -soul: configure - cmake --build $(BUILD_DIR) --target soul_build +world: configure + cmake --build $(BUILD_DIR) --target world_build run: configure cmake --build $(BUILD_DIR) --target run |