scc

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

commit e8e24d5c05305a29469c5e339f8674718e943b3d
parent c89ab64d18b7448a0407244b67cfc11f7d6b85f1
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 28 Oct 2019 23:22:02 +0100

[libc/i386] Remove not implemented targets

These targets are not implemented now, so it does not make sense
to have these directories in the filesystem.

Diffstat:
Msrc/libc/arch/i386/Makefile | 2+-
Dsrc/libc/arch/i386/darwin/Makefile | 10----------
Dsrc/libc/arch/i386/dragonfly/Makefile | 10----------
Dsrc/libc/arch/i386/netbsd/Makefile | 10----------
Dsrc/libc/arch/i386/openbsd/Makefile | 10----------
5 files changed, 1 insertion(+), 41 deletions(-)

diff --git a/src/libc/arch/i386/Makefile b/src/libc/arch/i386/Makefile @@ -4,7 +4,7 @@ include $(PROJECTDIR)/scripts/rules.mk include ../../rules.mk OBJS = longjmp.o setjmp.o -DIRS = netbsd openbsd dragonfly linux darwin +DIRS = linux all: $(OBJS) $(SYS) diff --git a/src/libc/arch/i386/darwin/Makefile b/src/libc/arch/i386/darwin/Makefile @@ -1,10 +0,0 @@ -.POSIX: -PROJECTDIR =../../../../.. -include $(PROJECTDIR)/scripts/rules.mk -include ../../../rules.mk - -all: - -clean: - rm -f `awk '/[0-9]* _/ {print $$2".s"}' syscall.lst` - rm -f syscall _sys_errlist.c diff --git a/src/libc/arch/i386/dragonfly/Makefile b/src/libc/arch/i386/dragonfly/Makefile @@ -1,10 +0,0 @@ -.POSIX: -PROJECTDIR =../../../../.. -include $(PROJECTDIR)/scripts/rules.mk -include ../../../rules.mk - -all: - -clean: - rm -f `awk '/[0-9]* _/ {print $$2".s"}' syscall.lst` - rm -f syscall _sys_errlist.c diff --git a/src/libc/arch/i386/netbsd/Makefile b/src/libc/arch/i386/netbsd/Makefile @@ -1,10 +0,0 @@ -.POSIX: -PROJECTDIR =../../../../.. -include $(PROJECTDIR)/scripts/rules.mk -include ../../../rules.mk - -all: - -clean: - rm -f `awk '/[0-9]* _/ {print $$2".s"}' syscall.lst` - rm -f syscall _sys_errlist.c diff --git a/src/libc/arch/i386/openbsd/Makefile b/src/libc/arch/i386/openbsd/Makefile @@ -1,10 +0,0 @@ -.POSIX: -PROJECTDIR =../../../../.. -include $(PROJECTDIR)/scripts/rules.mk -include ../../../rules.mk - -all: - -clean: - rm -f `awk '/[0-9]* _/ {print $$2".s"}' syscall.lst` - rm -f syscall _sys_errlist.c