We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0481043 commit 08d636bCopy full SHA for 08d636b
2 files changed
Makefile
@@ -4,15 +4,15 @@ include config.mk
4
5
all:
6
$(MAKE) -C src/wmcp
7
- $(MAKE) -C src/mcps/wttr
+ $(MAKE) -C src/mcps
8
$(MAKE) -C src/repl
9
$(MAKE) -C src/tool
10
11
fmt:
12
go fmt $(shell ls src/repl/*.go )
13
go fmt $(shell ls src/wmcp/*.go )
14
go fmt $(shell ls src/tool/*.go )
15
- go fmt $(shell ls src/mcps/wttr/*.go )
+ go fmt $(shell ls src/mcps/*/*.go )
16
17
install:
18
$(MAKE) -C src/wmcp install
src/mcps/Makefile
@@ -7,7 +7,9 @@ BINS+=pipe
BINS+=shell
BINS+=time
-all:
+all clean:
+ for a in $(BINS); do $(MAKE) -C $$a $< ; done
+
mkdir -p $(DESTDIR)$(PREFIX)/bin
0 commit comments