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