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
153 B
Makefile
Raw Normal View History

2020-10-17 15:15:08 +03:00
PREFIX?=/usr/X11R6
CFLAGS?=-Os -pedantic -Wall
all: wm
2020-10-17 15:15:08 +03:00
wm: wm.c
$(CC) $(CFLAGS) -I$(PREFIX)/include wm.c -L$(PREFIX)/lib -lX11 -o wm
2020-10-17 15:15:08 +03:00
clean:
rm -f wm