Compare commits

...

2 Commits

Author SHA1 Message Date
William Bell
e1b80b42d9 fix make release 2025-08-16 01:02:48 +01:00
William Bell
dab86925b4 fix winblows 2025-08-16 00:58:56 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -159,4 +159,4 @@ jobs:
body: Automated release based on tag ${{ github.ref_name }} body: Automated release based on tag ${{ github.ref_name }}
draft: false draft: false
prerelease: ${{ startsWith(github.ref_name, 'prerelease-') }} prerelease: ${{ startsWith(github.ref_name, 'prerelease-') }}
artifacts: "./artifacts/*" artifacts: "./artifacts/**/*"

View File

@@ -29,7 +29,7 @@ windows: $(CFILES) $(LEXER_C) $(LEXER_H)
echo -n "external/libdye/src/dye.c " ; \ echo -n "external/libdye/src/dye.c " ; \
find src -name '*.c' -print0 | xargs -0 echo -n) > sources.txt find src -name '*.c' -print0 | xargs -0 echo -n) > sources.txt
mkdir -p bin mkdir -p bin
gcc -O3 -march=native -o $(BINARY) @sources.txt $(CFLAGS) gcc -O3 -march=native -o $(BINARY) @sources.txt $(CFLAGS) -lbcrypt
native: $(CFILES) $(LEXER_C) $(LEXER_H) native: $(CFILES) $(LEXER_C) $(LEXER_H)
mkdir -p bin mkdir -p bin