sim

the sim text editor
git clone git://ssnf.xyz/sim
Log | Files | Refs | README

commit 834da0c67cdf325d910899a426463b1ddff09a67
parent 522e2a66457a2343fe7d04d0df9f164a80dd2d62
Author: ssnf <ssnf@ssnf.xyz>
Date:   Thu, 11 Aug 2022 14:04:53 +0000

Makefile BSD support

Diffstat:
MMakefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,6 +1,6 @@ -CC = c89 -CFLAGS = -Os -Wall -Wpedantic -Wno-deprecated-declarations -Wno-return-type -#CFLAGS = -O0 -g -Wall -Wpedantic +CC = cc +CFLAGS = -Os -ansi -Wall -Wpedantic -Wno-deprecated-declarations -Wno-return-type +#CFLAGS = -O0 -g -ansi -Wall -Wpedantic SRC = sim.c posix.c OBJ = ${SRC:.c=.o}