Fix typo
[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 7build: \
8345f2b3
SK
8 khatus \
9 khatus_sensor_time
17a27e48
SK
10
11khatus: \
12 khatus_lib_log.o \
13 khatus_lib_time.o
14
8345f2b3
SK
15khatus_sensor_time: \
16 khatus_lib_log.o \
17 khatus_lib_time.o
18
17a27e48 19khatus_lib_time.o: khatus_lib_log.o
9b5ebc12
SK
20
21clean:
17a27e48
SK
22 @find . -type f -executable -delete
23 @find . -type f -name '*.o' -delete
9b5ebc12 24
af4ef80d
SK
25rebuild:
26 @$(MAKE) -s clean
9b5ebc12 27 @$(MAKE) -s build
This page took 0.026022 seconds and 4 git commands to generate.