mirror of
https://github.com/sheumann/hush.git
synced 2024-11-17 10:07:19 +00:00
2669183517
At this point, hush can successfully build and run, although it doesn't work correctly. The main Makefile is now dedicated to the GNO build. There's now a separate makefile for building on modern systems with GCC/Clang.
5 lines
178 B
Bash
Executable File
5 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Make with appropriate flags for gcc or clang on modern *nix systems
|
|
make -f Makefile.gmake CFLAGS="-std=c89 -funsigned-char -Wall -Wno-format-security -Wno-comment"
|