Skip to content

Commit

Permalink
makefile change
Browse files Browse the repository at this point in the history
  • Loading branch information
GbaCretin committed Jul 27, 2022
1 parent 36901bb commit b1008af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LIST_PATH := $(SRC_PATH)/listing.txt

TEST_PATH := test

.PHONY: clean build run sdata
.PHONY: clean build run debug sdata

build: LUT
$(ZASM) -i $(SRC_MAIN) -o $(SRC_OUT).tmp -uwy -l ./$(LIST_PATH)
Expand All @@ -25,6 +25,9 @@ LUT:
run: build
$(MAKE) -C $(TEST_PATH) run

debug: build
$(MAKE) -C $(TEST_PATH) debug

sdata:
$(MAKE) -C $(TEST_PATH) sdata

Expand Down

0 comments on commit b1008af

Please sign in to comment.