Build as C99
[khatus.git] / x5 / Makefile
1 CPPFLAGS := -D_POSIX_C_SOURCE=200809L
2 CFLAGS := -std=c99 -Wall -Wextra
3 LDLIBS := -lX11
4
5 .PHONY: build clean rebuild
6
7 build: khatus
8
9 clean:
10 @ find . -type f -executable -delete
11
12 rebuild:
13 @$(MAKE) -s clean
14 @$(MAKE) -s build
This page took 0.048333 seconds and 4 git commands to generate.