Implement clockloop utility
[khome.git] / src / Makefile
1 CPPFLAGS := -D_POSIX_C_SOURCE=200809L
2 CFLAGS := -std=c99 -Wall -Wextra
3 LDLIBS := -lncurses
4
5 .PHONY: build clean
6
7 build: clockloop
8
9 clean:
10 rm -f clockloop
This page took 0.045424 seconds and 4 git commands to generate.