mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 14:12:51 +00:00
9 lines
77 B
Makefile
9 lines
77 B
Makefile
|
BIN := vrl4
|
||
|
|
||
|
.PHONY: all
|
||
|
all: $(BIN)
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -f *.o $(BIN)
|