Skip to content

Commit e663a6e

Browse files
authored
def VERSION var
1 parent f4450dc commit e663a6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
.PHONY: shak-cli win-shak-cli
22
.DEFAULT_GOAL = win-shak-cli
33

4-
VERSION = "0.9.041"
4+
VERSION = "0.9.042"
55

66
shak-cli: src/main.c src/sha1.c src/sha2-32.c src/sha2-64.c src/shacom.c \
77
include/shacom.h include/sha1.h include/sha2-32.h include/sha2-64.h
88
gcc -Wall -o bin/shak src/main.c src/sha1.c src/sha2-32.c src/sha2-64.c src/shacom.c \
9-
-Iinclude -DGCCVERSION='"gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"' -DSHAKVERSION=$VERSION
9+
-Iinclude -DGCCVERSION='"gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"' -DSHAKVERSION='$(VERSION)'
1010

1111
win-shak-cli: src/main.c src/sha1.c src/sha2-32.c src/sha2-64.c src/shacom.c \
1212
include/shacom.h include/sha1.h include/sha2-32.h include/sha2-64.h
1313
x86_64-w64-mingw32-gcc.exe -Wall -o bin/shak.exe src/main.c src/sha1.c src/sha2-32.c src/sha2-64.c src/shacom.c \
14-
-Iinclude -DGCCVERSION='"x86_64-w64-mingw32-gcc.exe (x86_64-posix-seh-rev0, Built by MinGW-Builds project) 13.2.0"' -DSHAKVERSION=$VERSION
14+
-Iinclude -DGCCVERSION='"x86_64-w64-mingw32-gcc.exe (x86_64-posix-seh-rev0, Built by MinGW-Builds project) 13.2.0"' -DSHAKVERSION='$(VERSION)'

0 commit comments

Comments
 (0)