Makefile 77 B

123456789
  1. BIN := vrl4
  2. .PHONY: all
  3. all: $(BIN)
  4. .PHONY: clean
  5. clean:
  6. rm -f *.o $(BIN)