scc

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

commit 863ae94d24cc233614af6cd22e5e3caa3921481f
parent 529aa2c1a043342c4be06a16048753fc21eee23e
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