This repository has been archived on 2021-10-03. You can view files and clone it, but cannot push or open issues or pull requests.
swm/Makefile

10 lines
No EOL
153 B
Makefile

PREFIX?=/usr/X11R6
CFLAGS?=-Os -pedantic -Wall
all: wm
wm: wm.c
$(CC) $(CFLAGS) -I$(PREFIX)/include wm.c -L$(PREFIX)/lib -lX11 -o wm
clean:
rm -f wm