Break-out logging and time-related functions into lib modules
[khatus.git] / x5 / Makefile
1 CPPFLAGS := -D_POSIX_C_SOURCE=200809L
2 CFLAGS := -std=c99 -Wall -Wextra
3 LDLIBS := -lX11
4
5 .PHONY: build clean rebuild
6
7 build: \
8 khatus
9
10 khatus: \
11 khatus_lib_log.o \
12 khatus_lib_time.o
13
14 khatus_lib_time.o: khatus_lib_log.o
15
16 clean:
17 @find . -type f -executable -delete
18 @find . -type f -name '*.o' -delete
19
20 rebuild:
21 @$(MAKE) -s clean
22 @$(MAKE) -s build
This page took 0.048327 seconds and 4 git commands to generate.