scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 347a3c1db0431826910730f43819715fa3a6c7f8
parent 8f703c5646e41a78a2b3ae9d305e479f765ae43c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue,  7 Mar 2017 10:42:20 +0100

Add missed .POSIX in Makefiles

Diffstat:
Mlibc/src/sys/amd64-linux/Makefile | 1+
Mtests/Makefile | 1+
Mtests/error/Makefile | 1+
Mtests/execute/Makefile | 1+
4 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/libc/src/sys/amd64-linux/Makefile b/libc/src/sys/amd64-linux/Makefile @@ -1,3 +1,4 @@ +.POSIX: OBJ = _brk.o _close.o _exit.o _lseek.o _open.o _read.o _write.o SRC = $(OBJ:.o=.s) diff --git a/tests/Makefile b/tests/Makefile @@ -1,3 +1,4 @@ +.POSIX: all clean: cd error && make -e $@ diff --git a/tests/error/Makefile b/tests/error/Makefile @@ -1,3 +1,4 @@ +.POSIX: all: tests diff --git a/tests/execute/Makefile b/tests/execute/Makefile @@ -1,3 +1,4 @@ +.POSIX: all: tests