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