diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2023-10-10 00:16:27 -0700 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2023-10-10 00:16:27 -0700 |
commit | 115bb79c067005259b2a3a5515febe86625c05c8 (patch) | |
tree | 3fe9d5950510dc405d80e783989d58141a76b629 | |
parent | 12f27fe1fc3441d97668b22078c128fb856715db (diff) | |
parent | 9f8855343c881bdc01b9fff5b956537ba1106b76 (diff) |
Merge branch 'master' into fly
-rw-r--r-- | Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -6,13 +6,7 @@ include config.mk SRC = drw.c dwm.c util.c OBJ = ${SRC:.c=.o} -all: options dwm - -options: - @echo dwm build options: - @echo "CFLAGS = ${CFLAGS}" - @echo "LDFLAGS = ${LDFLAGS}" - @echo "CC = ${CC}" +all: dwm .c.o: ${CC} -c ${CFLAGS} $< @@ -48,4 +42,4 @@ uninstall: rm -f ${DESTDIR}${PREFIX}/bin/dwm\ ${DESTDIR}${MANPREFIX}/man1/dwm.1 -.PHONY: all options clean dist install uninstall +.PHONY: all clean dist install uninstall |