diff options
author | ZachIR <zachir@librem.one> | 2025-08-09 07:36:06 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-08-09 07:36:06 -0500 |
commit | e046a23ac4e156d49c0112f73559f11149ed2b15 (patch) | |
tree | 5e004156571f63c3b30348dbab2c1edec310c0ea /Makefile | |
parent | e5cd3d969731876646f5ed18320d8437a9a09b61 (diff) |
Update to upstream version 6.5
Diffstat (limited to 'Makefile')
-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} $< @@ -50,4 +44,4 @@ uninstall: ${DESTDIR}${PREFIX}/bin/dwmc\ ${DESTDIR}${MANPREFIX}/man1/dwm.1 -.PHONY: all options clean dist install uninstall +.PHONY: all clean dist install uninstall |