mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-25 08:27:39 +02:00
11 lines
185 B
Makefile
11 lines
185 B
Makefile
# Common makefile -- loads make rules for each platform
|
|
|
|
BUILDDIR := build
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
|
mkdir -p ${BUILDDIR} && cd ${BUILDDIR} && cmake .. && $(MAKE)
|
|
|
|
clean:
|
|
rm -rf ${BUILDDIR}
|