Add TODO to handle signals
[khatus.git] / x5 / Makefile
1 CFLAGS := -Wall -Wextra
2 LDLIBS := -lX11
3
4 EXECUTABLES := khatus
5
6 .PHONY: \
7 build \
8 clean \
9 rebuild
10
11 build: $(EXECUTABLES)
12
13 clean:
14 @find . -name '*.o' -type f -delete
15 @rm -f $(EXECUTABLES)
16
17 rebuild: clean
18 @$(MAKE) -s build
This page took 0.064933 seconds and 4 git commands to generate.