docs: update

This commit is contained in:
Dylan Araps
2019-10-11 14:48:34 +03:00
commit 95b696bdc2
5 changed files with 831 additions and 0 deletions

20
Makefile Executable file
View File

@@ -0,0 +1,20 @@
CFLAGS+= -Wall
LDADD+= -lX11
LDFLAGS=
EXEC=catwm
PREFIX?= /usr
BINDIR?= $(PREFIX)/bin
CC=gcc
all: $(EXEC)
catwm: catwm.o
$(CC) $(LDFLAGS) -Os -o $@ $+ $(LDADD)
install: all
install -Dm 755 catwm $(DESTDIR)$(BINDIR)/catwm
clean:
rm -f catwm *.o