Makefile: remove the options target 8df553e0
The Makefile used to suppress output (by using @), so this target made sense at
the time.

But the Makefile should be simple and make debugging with less abstractions or
fancy printing.  The Makefile was made verbose and doesn't hide the build
output, so remove this target.

Prompted by a question on the mailing list about the options target.
Hiltjo Posthuma · 2023-09-22 15:16 1 file(s) · +2 −8
Makefile +2 −8
6 6
SRC = drw.c dmenu.c stest.c util.c
7 7
OBJ = $(SRC:.c=.o)
8 8
9 -
all: options dmenu stest
10 -
11 -
options:
12 -
	@echo dmenu build options:
13 -
	@echo "CFLAGS   = $(CFLAGS)"
14 -
	@echo "LDFLAGS  = $(LDFLAGS)"
15 -
	@echo "CC       = $(CC)"
9 +
all: dmenu stest
16 10
17 11
.c.o:
18 12
	$(CC) -c $(CFLAGS) $<
61 55
		$(DESTDIR)$(MANPREFIX)/man1/dmenu.1\
62 56
		$(DESTDIR)$(MANPREFIX)/man1/stest.1
63 57
64 -
.PHONY: all options clean dist install uninstall
58 +
.PHONY: all clean dist install uninstall