9 lines
166 B
Makefile
9 lines
166 B
Makefile
all: clean public
|
|
|
|
public: $(shell find src -type f) $(shell find share -type f) $(shell find bin)
|
|
./bin/mkws https://joeac.net
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf public
|