mirror of
https://github.com/EnderIce2/rpc-bridge.git
synced 2025-07-10 14:59:14 +00:00
11 lines
110 B
Makefile
11 lines
110 B
Makefile
.PHONY: all build clean
|
|
|
|
all:
|
|
$(MAKE) -C src all
|
|
|
|
build:
|
|
$(MAKE) -C src build
|
|
|
|
clean:
|
|
$(MAKE) -C src clean
|