2 Commits

Author SHA1 Message Date
Maarten van Gompel
9fb1964f5d version bump 2026-01-22 17:33:05 +01:00
Willow Barraco
5b29d8c1a7 Makefile: do not rebuild on install
Because the directory timestamp depends on the file insise, this rule
cause a second rebuild. Let's just silently create the directory
when we require it.

Signed-off-by: Willow Barraco <contact@willowbarraco.fr>
Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>
2026-01-22 17:32:10 +01:00
2 changed files with 3 additions and 5 deletions

View File

@@ -31,14 +31,12 @@ DOCS = wvkbd.1
all: ${BIN} ${DOCS}
$(BUILDDIR):
$(BUILDDIR)/config.h:
mkdir -p $(BUILDDIR)
$(BUILDDIR)/config.h: $(BUILDDIR)
cp config.$(LAYOUT).h $@
$(BUILDDIR)/%.o: $(BUILDDIR)
$(BUILDDIR)/%.o: %.c
mkdir -p $(BUILDDIR)
$(CC) -I $(CURDIR) -I $(CURDIR)/$(BUILDDIR) -c $(CFLAGS) -o $@ $<
proto/%-client-protocol.c: proto/%.xml

View File

@@ -1,4 +1,4 @@
VERSION = 0.19.1
VERSION = 0.19.2
CFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=700
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man