From 23955b15f48bdc544cefd0e8757a66ba599ccd40 Mon Sep 17 00:00:00 2001 From: speedie Date: Sat, 25 Mar 2023 15:36:04 +0100 Subject: [PATCH] bump version, remove options.mk because its not necessary --- Makefile | 6 ++++-- options.mk | 5 ----- 2 files changed, 4 insertions(+), 7 deletions(-) delete mode 100644 options.mk diff --git a/Makefile b/Makefile index 3c78131..8b13a99 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,11 @@ # See LICENSE file for copyright and license details. include host.mk -include options.mk include toggle.mk +# spmenu version +VERSION = 0.3.2 + CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMATOGGLE) $(BDTOGGLE) $(PANGOTOGGLE) $(IMLIB2TOGGLE) CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations $(OPT) $(INCS) $(CPPFLAGS) LDFLAGS = $(LIBS) @@ -27,7 +29,7 @@ options: $(CC) -c $(CFLAGS) -g $< -$(OBJ): options.h options.mk libs/sl/draw.h +$(OBJ): options.h libs/sl/draw.h spmenu: spmenu.o libs/sl/draw.o libs/sl/main.o $(CC) -o $@ spmenu.o draw.o main.o $(LDFLAGS) diff --git a/options.mk b/options.mk deleted file mode 100644 index 1bcf8e7..0000000 --- a/options.mk +++ /dev/null @@ -1,5 +0,0 @@ -# spmenu - dynamic menu -# See LICENSE file for copyright details. - -# spmenu version -VERSION = 0.3.1