571c8ba3bd63f58dc43db5f9f40bad2f6dc65a5f
[khatus.git] / x5 / Makefile
1 EXECUTABLES := khatus
2 CC := $(CC) -Wall
3
4 .PHONY: \
5 build \
6 clean \
7 rebuild
8
9 build: $(EXECUTABLES)
10
11 clean:
12 @find . -name '*.o' -type f -delete
13 @rm -f $(EXECUTABLES)
14
15 rebuild: clean
16 @$(MAKE) -s build
This page took 0.036303 seconds and 3 git commands to generate.