Compare commits

..

3 Commits

Author SHA1 Message Date
celso 7a490478db resized border to 1 pixel 2023-07-20 12:43:23 -03:00
celso e0aff0e813 applied border and center patches 2023-07-15 20:55:40 -03:00
celso b1c8c58541 modified config.mk for dell_laptop computer 2023-07-15 20:44:54 -03:00
1 changed files with 8 additions and 2 deletions

View File

@ -6,7 +6,13 @@ include config.mk
SRC = drw.c dmenu.c stest.c util.c
OBJ = $(SRC:.c=.o)
all: dmenu stest
all: options dmenu stest
options:
@echo dmenu build options:
@echo "CFLAGS = $(CFLAGS)"
@echo "LDFLAGS = $(LDFLAGS)"
@echo "CC = $(CC)"
.c.o:
$(CC) -c $(CFLAGS) $<
@ -55,4 +61,4 @@ uninstall:
$(DESTDIR)$(MANPREFIX)/man1/dmenu.1\
$(DESTDIR)$(MANPREFIX)/man1/stest.1
.PHONY: all clean dist install uninstall
.PHONY: all options clean dist install uninstall