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