Skip to content

Commit e3b6aee

Browse files
committed
feat(make): apis target - make all apis
1 parent 2298601 commit e3b6aee

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ api-deps: $(API_DEPS)
3939

4040
include $(API_DEPS)
4141

42-
clean: clean-api
42+
clean: clean-apis
4343
-rm -Rf $(VENV_DIR)
4444
-rm $(API_DEPS)
4545

src/mako/deps.mako

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ ${api_clean}:
3131
.PHONY += $(.PHONY) ${' '.join(a[0] for a in api_info)} ${' '.join(a[1] for a in api_info)}
3232
3333
help-api:
34+
$(info apis - make all APIs)
3435
% for a in api_info:
3536
$(info ${a[0]} - build the ${a[0]} api)
3637
$(info ${a[1]} - clean all generated files of the ${a[0]} api)
3738
% endfor
3839
39-
clean-api: ${' '.join(a[1] for a in api_info)}
40+
clean-apis: ${' '.join(a[1] for a in api_info)}
41+
apis: ${' '.join(a[0] for a in api_info)}

0 commit comments

Comments
 (0)