diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-06-06 04:41:47 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-06-06 04:41:47 -0500 |
commit | 58789a2e84042875cb1556fbb430a5af5e370e86 (patch) | |
tree | aebbbd3e79e2ca4428054f4054ba5c01eeee8c4f | |
parent | 3ff11a344021db7aabdfa310800dbe878d3663c8 (diff) | |
download | abuild-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.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |