scc

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

commit d1dcadeda75318e666c7bc3fd00829bdf411eece
parent ec349c7a5527b1e82c437cb23c1d386f8b79a246
Author: zerous Naveen Narayanan <zerous@simple-cc.org>
Date:   Mon, 20 Apr 2020 21:51:06 +0200

Add libcrt files for ppc32

Diffstat:
Asrc/libcrt/ppc32/Makefile | 11+++++++++++
Asrc/libcrt/ppc32/dummy.s | 0
2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/src/libcrt/ppc32/Makefile b/src/libcrt/ppc32/Makefile @@ -0,0 +1,11 @@ +.POSIX: +PROJECTDIR=../../.. +include $(PROJECTDIR)/scripts/rules.mk + +OBJS = dummy.o +TARGET = $(LIBCDIR)/libcrt.a + +all: $(TARGET) + +$(TARGET): $(OBJS) + mklib -o $@ $? diff --git a/src/libcrt/ppc32/dummy.s b/src/libcrt/ppc32/dummy.s