hush/build.gcc
Stephen Heumann 2669183517 Define segments and make other adjustments in makefile.
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.
2014-11-05 22:26:33 -06:00

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"