Makefile (112B)
1 2 3 4 5 6 7 8 9 10
.POSIX: CFLAGS = -Wall -Wextra -pedantic -Og -g -D_XOPEN_SOURCE=500 all: a b a: a.c b: b.c clean: rm -f a b