System information fetch utility with a really cool looking mushroom in it.
at main 16 lines 184 B view raw
1.POSIX: 2 3HAREC=hare 4SRC=src/*.ha 5BUILD=build 6 7build: src/main.ha 8 $(HAREC) build -F -o $(BUILD)/a.out $(SRC) 9 10run: 11 $(HAREC) run $(SRC) 12 13test: 14 $(HAREC) test $(SRC) 15 16.PHONY: run build