From 6abe7d7b0b844b6577e81b892d1683829dfa4307 Mon Sep 17 00:00:00 2001 From: Miloslav Ciz Date: Thu, 19 Jan 2023 22:47:07 +0100 Subject: [PATCH] Fix FreeBSD compile script --- README.md | 1 + make.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 07517e1..d2dfa58 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ This game got some attention on 4chan: [1](https://archive.li/Yzcwt), [2](https: - **Extremely portable**. So far ported to and tested on: - GNU/Linux PC: SDL, csfml, terminal (experimental), Linux framebuffer (experimental) - OpenBSD SDL + - FreeBSD SDL - Winshit XP SDL - Browser - Pokitto (220 x 116, 48 MHz ARM, 36 KB RAM, 256 KB flash) diff --git a/make.sh b/make.sh index 4669af0..75a145a 100755 --- a/make.sh +++ b/make.sh @@ -14,7 +14,7 @@ fi clear; clear; -C_FLAGS='-x c -std=c99 -Wall -Wextra -pedantic -O3 -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o anarch' +C_FLAGS='-std=c99 -Wall -Wextra -pedantic -O3 -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o anarch' COMPILER='g++'