nwm
Version:
Dynamic window manager for X11
22 lines (13 loc) • 400 B
Plain Text
all: nwm
nwm:
gcc -std=c99 -pedantic -Wall -I./include/nwm ./src/nwm/nwm.c -o ./nwm
test: clean list.test.c run
list.test.c:
gcc -std=c99 -pedantic -Wall -I./include -I./include/list ./src/list/list.c ./tests/list.test.c -o ./tests/list.test
.PHONY: clean run
clean:
rm -f ./tests/list.test
run:
@echo " "
@echo "Running list.test:"
./tests/list.test || true && rm -f ./tests/list.test