Files
rpc-bridge/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