Skip to content

Commit

Permalink
fix(rootMakefile): wrong rule names
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelR-T committed May 21, 2024
1 parent c1ebdda commit 0dd944e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
## Makefile
##

all: gui server # ai
MODULES := gui server # ai

gui server ai:
@make -C $@
all: zappy_gui zappy_server # zappy_ai

zappy_%:
@make -C $*

clean fclean tests_run:
@make $@ -C gui
# @make $@ -C ai
@make $@ -C server
$(foreach M,$(MODULES), make -C $M $@;)

re: fclean all

.PHONY: all clean fclean re gui ai server tests_run
.PHONY: clean fclean re tests_run

0 comments on commit 0dd944e

Please sign in to comment.