diff options
author | Luke Smith <luke@lukesmith.xyz> | 2024-07-19 11:12:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-19 11:12:44 -0400 |
commit | 8282394bdc273a8b573fda7ea1e5a9e490978c6b (patch) | |
tree | 83b84102a7f079fd7b9792fb44322680ae3114aa /Makefile | |
parent | 499d9e523a156e55511cee24ac30da9c0c9919fb (diff) | |
parent | 0485f1eb9c1624d443fbf14992d281336a859dce (diff) |
Merge Suckless Updates, Refactor Config.h and Enhance dwm Performance
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} $< @@ -47,4 +41,4 @@ uninstall: ${DESTDIR}${PREFIX}/share/dwm/larbs.mom\ ${DESTDIR}${MANPREFIX}/man1/dwm.1 -.PHONY: all options clean dist install uninstall +.PHONY: all clean dist install uninstall |