summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2024-07-19 11:12:44 -0400
committerGitHub <noreply@github.com>2024-07-19 11:12:44 -0400
commit8282394bdc273a8b573fda7ea1e5a9e490978c6b (patch)
tree83b84102a7f079fd7b9792fb44322680ae3114aa /Makefile
parent499d9e523a156e55511cee24ac30da9c0c9919fb (diff)
parent0485f1eb9c1624d443fbf14992d281336a859dce (diff)
Merge pull request #242 from fesowowako/masterHEADmaster
Merge Suckless Updates, Refactor Config.h and Enhance dwm Performance
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 11a49c4..0c3574e 100644
--- a/Makefile
+++ b/Makefile
@@ -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