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