summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2024-06-06 04:41:47 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2024-06-06 04:41:47 -0500
commit58789a2e84042875cb1556fbb430a5af5e370e86 (patch)
treeaebbbd3e79e2ca4428054f4054ba5c01eeee8c4f /Makefile
parent3ff11a344021db7aabdfa310800dbe878d3663c8 (diff)
downloadabuild-58789a2e84042875cb1556fbb430a5af5e370e86.tar.gz
abuild-58789a2e84042875cb1556fbb430a5af5e370e86.tar.bz2
abuild-58789a2e84042875cb1556fbb430a5af5e370e86.tar.xz
abuild-58789a2e84042875cb1556fbb430a5af5e370e86.zip
Makefile: Update base version, define in C
Allows us to have access to the abuild version we are from the compiled C utilities. Also update the defined version to what we last released.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9595696..541527c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
PACKAGE := abuild
-VERSION := 3.3.1
+VERSION := 3.4.2
prefix ?= /usr
bindir ?= $(prefix)/bin
@@ -75,7 +75,7 @@ clean:
-@rm -r tests/newapkbuild/*
%.o: %.c
- $(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS-$@) -o $@ -c $<
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS-$@) -DVERSTR=\"$(FULL_VERSION)\" -o $@ -c $<
abuild-sudo: abuild-sudo.o
$(LINK)