5fd735d861134cacf8e5618b7a1b30ae48e299c2
[khatus.git] / x5 / Makefile
1 EXECUTABLES := khatus
2 CC := c99-gcc -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.052484 seconds and 3 git commands to generate.