My fork of Suckless's DWM window manager
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# gridwm - grid window manager |
|
# (C)opyright MMVI Anselm R. Garbe |
|
|
|
include config.mk |
|
|
|
SRC = wm.c |
|
OBJ = ${SRC:.c=.o} |
|
|
|
all: gridwm |
|
@echo finished |
|
|
|
.c.o: |
|
@echo CC $< |
|
@${CC} -c ${CFLAGS} $< |
|
|
|
${OBJ}: wm.h |
|
|
|
gridwm: ${OBJ} |
|
@echo LD $@ |
|
@${CC} -o $@ ${OBJ} ${X11LDFLAGS} |
|
|
|
clean: |
|
rm -f gridwm *.o
|
|
|