Configuration file for DWM on MacBook Air
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.

23 lines
305 B

18 years ago
  1. # gridwm - grid window manager
  2. # (C)opyright MMVI Anselm R. Garbe
  3. include config.mk
  4. SRC = wm.c
  5. OBJ = ${SRC:.c=.o}
  6. all: gridwm
  7. @echo finished
  8. .c.o:
  9. @echo CC $<
  10. @${CC} -c ${CFLAGS} $<
  11. ${OBJ}: wm.h
  12. gridwm: ${OBJ}
  13. @echo LD $@
  14. @${CC} -o $@ ${OBJ} ${X11LDFLAGS}
  15. clean:
  16. rm -f gridwm *.o