Simplify sensor IO model and fix opts and timeouts
[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 khatus_sensor_battery \
10 khatus_sensor_time
11
12khatus: \
13 khatus_lib_log.o \
14 khatus_lib_time.o
15
16khatus_sensor_battery: \
17 khatus_lib_log.o \
18 khatus_lib_time.o
19
20khatus_sensor_time: \
21 khatus_lib_log.o \
22 khatus_lib_time.o
23
24khatus_lib_time.o: khatus_lib_log.o
25
26clean:
27 @find . -type f -executable -delete
28 @find . -type f -name '*.o' -delete
29
30rebuild:
31 @$(MAKE) -s clean
32 @$(MAKE) -s build
This page took 0.017338 seconds and 4 git commands to generate.